UNPKG

@selfcommunity/api-services

Version:
10 lines (9 loc) 167 B
/** * SCPaginatedResponse Interface */ export interface SCPaginatedResponse<T = []> { count: number; next: string; previous: string; results: T[]; }