(path: string)
| 271 | | { kind: "folder"; key: string; folder: NoteFolder; subpath: string; label: string }; |
| 272 | |
| 273 | function noteSelectionKey(path: string): string { |
| 274 | return `note:${encodeURIComponent(path)}`; |
| 275 | } |
| 276 | |
| 277 | function folderSelectionKey(folder: NoteFolder, subpath: string): string { |
| 278 | return `folder:${folder}:${encodeURIComponent(subpath)}`; |
no outgoing calls
no test coverage detected