Interface KodikResponseWithPagination<T>

interface KodikResponseWithPagination {
    next_page: Nullable<string>;
    prev_page: Nullable<string>;
    results: T;
    time: string;
    total: number;
}

Type Parameters

  • T

Hierarchy

Properties

next_page: Nullable<string>
prev_page: Nullable<string>
results: T
time: string
total: number

Generated using TypeDoc