(root: string, rel: string)
| 3230 | } |
| 3231 | |
| 3232 | export function moveToTrash(root: string, rel: string): Promise<NoteMeta> { |
| 3233 | return moveBetweenFolders(root, rel, 'trash') |
| 3234 | } |
| 3235 | |
| 3236 | export function restoreFromTrash(root: string, rel: string): Promise<NoteMeta> { |
| 3237 | return moveBetweenFolders(root, rel, 'inbox') |
no test coverage detected