| 1 | /* This file is generated and managed by tsync */ |
| 2 | |
| 3 | export interface Folder { |
| 4 | name: string; |
| 5 | children: Paginated<Folder>; |
| 6 | } |
| 7 | |
| 8 | export interface Paginated<T> { |
| 9 | data: Array<T>; |
nothing calls this directly
no outgoing calls
no test coverage detected