()
| 365 | // -------------------------------------------------------------------- |
| 366 | |
| 367 | function listNotes(): Promise<NoteMeta[]> { |
| 368 | return jsonRequest<NoteMeta[]>('/notes') |
| 369 | } |
| 370 | |
| 371 | function listFolders(): Promise<FolderEntry[]> { |
| 372 | return jsonRequest<FolderEntry[]>('/folders') |
nothing calls this directly
no test coverage detected