Helpful
    Preparing search index...

    Interface IZDataSource<T>

    A representation of how to retrieve data from a given system or location.

    interface IZDataSource<T> {
        count(request: IZDataRequest): Promise<number>;
        retrieve(request: IZDataRequest): Promise<T[]>;
    }

    Type Parameters

    • T

      The type of data that the system will return.

    Implemented by

    Index

    Methods

    Methods