Interface PaginatedList<T>

interface PaginatedList<T> {
    count: number;
    next: string;
    previous: string;
    results: T[];
}

Type Parameters

  • T

Properties

count: number
next: string
previous: string
results: T[]

Generated using TypeDoc