Interface ListResponse<T>

interface ListResponse<T> {
    count: number;
    cursor: null | string;
    list: T[];
}

Type Parameters

  • T

Properties

Properties

count: number
cursor: null | string
list: T[]

Generated using TypeDoc