| 50 | * Dataset collection client. |
| 51 | */ |
| 52 | export interface DatasetCollectionClient { |
| 53 | list(): Promise<PaginatedList<Dataset>>; |
| 54 | getOrCreate(name?: string): Promise<DatasetCollectionData>; |
| 55 | } |
| 56 | |
| 57 | export interface DatasetClientUpdateOptions { |
| 58 | name?: string; |
no outgoing calls
no test coverage detected
searching dependent graphs…