Helpful
    Preparing search index...

    Interface IZPage<T>

    Represents a page of data.

    interface IZPage<T> {
        count: number;
        data: T[];
    }

    Type Parameters

    • T

      The type of data on the page.

    Index

    Properties

    Properties

    count: number

    The total number of items across all pages.

    data: T[]

    The current data view on the page.