Documentation
    Preparing search index...
    interface ListCheckpointsOptions {
        cursor?: string | null;
        endCheckpoint?: string | number;
        limit?: number;
        order?: "ascending" | "descending";
        signal?: AbortSignal;
        startCheckpoint?: string | number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cursor?: string | null

    Cursor from a previous page. Pages must be requested with a consistent order.

    endCheckpoint?: string | number

    Exclusive end of the checkpoint range to query. Defaults to the latest checkpoint.

    limit?: number
    order?: "ascending" | "descending"

    Order of returned results. Defaults to ascending (oldest first).

    signal?: AbortSignal
    startCheckpoint?: string | number

    Inclusive start of the checkpoint range to query. Defaults to genesis.