MCPcopy Index your code
hub / github.com/commandoperator/cmdop-sdk / OffsetList

Interface OffsetList

node/src/resources/base.ts:32–37  ·  view source on GitHub ↗

An offset-paginated list (`FleetList`/`MemberList`/`TunnelList`/...).

Source from the content-addressed store, hash-verified

30
31/** An offset-paginated list (`FleetList`/`MemberList`/`TunnelList`/...). */
32interface OffsetList<T> {
33 items: T[];
34 offset: number;
35 perPage: number;
36 total: number;
37}
38
39export interface ListPageOptions {
40 page?: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected