( options?: SchedulesAPI.ListScheduleOptions )
| 128 | * @returns The list of schedules |
| 129 | */ |
| 130 | export function list( |
| 131 | options?: SchedulesAPI.ListScheduleOptions |
| 132 | ): OffsetLimitPagePromise<typeof ScheduleObject> { |
| 133 | const apiClient = apiClientManager.client; |
| 134 | |
| 135 | if (!apiClient) { |
| 136 | throw apiClientMissingError(); |
| 137 | } |
| 138 | |
| 139 | return apiClient.listSchedules(options); |
| 140 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…