(value: string, detail?: string)
| 26 | function buildMoveNoteSuggestions(folders: FolderEntry[]): PromptSuggestion[] { |
| 27 | const byValue = new Map<string, PromptSuggestion>() |
| 28 | const push = (value: string, detail?: string): void => { |
| 29 | if (!byValue.has(value)) byValue.set(value, { value, detail }) |
| 30 | } |
| 31 | |
| 32 | push('inbox', 'Root') |
| 33 | push('archive', 'Root') |
no outgoing calls
no test coverage detected