ISPO SDK
    Preparing search index...

    Interface LiveEntityQueryState<T>

    Markdown
    interface LiveEntityQueryState<T = unknown> {
        cursor: string | null;
        error: Error | null;
        records: EntityRecord<T>[];
        status: LiveEntityQueryStatus;
    }

    Type Parameters

    • T = unknown
    Index
    cursor: string | null
    error: Error | null
    records: EntityRecord<T>[]