* Auto-suggestion provider for NLP textarea with @, #, and + triggers * @ = contexts, # = tags, + = wikilinks to vault files
| 13 | * @ = contexts, # = tags, + = wikilinks to vault files |
| 14 | */ |
| 15 | interface ProjectSuggestion { |
| 16 | basename: string; |
| 17 | displayName: string; |
| 18 | linkText: string; |
| 19 | type: "project"; |
| 20 | entry?: ProjectEntry; |
| 21 | toString(): string; |
| 22 | } |
| 23 | |
| 24 | interface TagSuggestion { |
| 25 | value: string; |
nothing calls this directly
no outgoing calls
no test coverage detected