/** * This type represent the model of a paged list response * @template T The type of item returned inside the items attribute. */ export type PagedListResponse = { items: T[]; total: number; skip: number; take: number; }; /** * This enum represent the staging environment */ export declare enum StagingEnvironment { STAGE = "stage", LIVE = "live" }