Interface IListingElementsResponse<T>

interface IListingElementsResponse<T extends Element> {
    asyncListingInitiated?: boolean;
    count: number;
    elements: T[];
}

Type Parameters

Properties

asyncListingInitiated?: boolean
count: number
elements: T[]