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

Interface CursorList

node/src/resources/base.ts:25–29  ·  view source on GitHub ↗

A cursor-paginated list (`MachineList`, `ScheduleRunList`).

Source from the content-addressed store, hash-verified

23
24/** A cursor-paginated list (`MachineList`, `ScheduleRunList`). */
25interface CursorList<T> {
26 items: T[];
27 nextCursor?: string;
28 hasMore?: boolean;
29}
30
31/** An offset-paginated list (`FleetList`/`MemberList`/`TunnelList`/...). */
32interface OffsetList<T> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected