Interface ReadArchivist<TReadResponse, TId>

interface ReadArchivist<TReadResponse extends Payload = Payload, TId = Hash> {
    get(ids: TId[]): PromisableArray<WithStorageMeta<TReadResponse>>;
    next(
        options?: NextOptions<TId>,
    ): PromisableArray<WithStorageMeta<TReadResponse>>;
}

Type Parameters

Hierarchy (View Summary)

Methods

Methods