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