interface IPaginatedResponse<T> {
    data: T[];
    paging?: Paging;
}

Type Parameters

  • T

Properties

Properties

data: T[]
paging?: Paging