/** * The frontend object, that represents the list object. */ export declare class ListObject { data: T[]; count: number; /** * * @param data Object array/list, that contains the data itself. * @param count The number of all items, that available in the backend. */ constructor(data: T[], count: number); }