ISPO SDK
    Preparing search index...

    Interface EntityQuerySubscriptionSeed<T>

    Markdown
    interface EntityQuerySubscriptionSeed<T = unknown> {
        eventCursor: number;
        kind: "seed";
        recoveryCursor: string;
        snapshot: { cursor: string | null; records: T[] };
    }

    Type Parameters

    • T = unknown
    Index
    eventCursor: number
    kind: "seed"
    recoveryCursor: string
    snapshot: { cursor: string | null; records: T[] }