| 62 | } |
| 63 | |
| 64 | export interface TaskOperations { |
| 65 | index: (opts: TaskOperationsIndexOptions) => Promise<any>; |
| 66 | create: (opts: TaskOperationsCreateOptions) => Promise<any>; |
| 67 | restore: (opts: TaskOperationsRestoreOptions) => Promise<any>; |
| 68 | |
| 69 | delete: (...args: any[]) => Promise<any>; |
| 70 | get: (...args: any[]) => Promise<any>; |
| 71 | } |
| 72 | |
| 73 | type ProviderShellOptions = { |
| 74 | tasks: TaskOperations; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…