mex-editor
    Preparing search index...

    Model to store paginated data containing total count.

    interface PaginatedItemsContainer<T> {
        items: T[];
        total: number;
    }

    Type Parameters

    • T
    Index
    items: T[]
    total: number