UNPKG

@idfy/sdk

Version:
9 lines (8 loc) 171 B
import { Links } from './Links'; export interface CollectionWithPaging<T> { offset?: number; limit?: number; size?: number; links: Links; data: T[]; }