()
| 373 | } |
| 374 | |
| 375 | function listAssets(): Promise<AssetMeta[]> { |
| 376 | return jsonRequest<AssetMeta[]>('/assets') |
| 377 | } |
| 378 | |
| 379 | function hasAssetsDir(): Promise<boolean> { |
| 380 | return jsonRequest<{ exists: boolean }>('/assets/exists').then(r => r.exists) |
nothing calls this directly
no test coverage detected