Search
    Preparing search index...

    Ответ сервера с пагинированным списком моделей. Содержит массив сериализованных моделей и общее количество элементов.

    type PaginatedResponse<M extends AbstractModel> = {
        items: SerializedType<M>[];
        total: number;
    }

    Type Parameters

    Index

    Properties

    Properties

    items: SerializedType<M>[]
    total: number