(root: string, rel: string)
| 3234 | } |
| 3235 | |
| 3236 | export function restoreFromTrash(root: string, rel: string): Promise<NoteMeta> { |
| 3237 | return moveBetweenFolders(root, rel, 'inbox') |
| 3238 | } |
| 3239 | |
| 3240 | export function archiveNote(root: string, rel: string): Promise<NoteMeta> { |
| 3241 | return moveBetweenFolders(root, rel, 'archive') |
no test coverage detected