chore(client/ts): port services/note_autocomplete

This commit is contained in:
Elian Doran
2024-12-21 14:34:16 +02:00
parent 934a395f15
commit e889955e8b
4 changed files with 70 additions and 27 deletions

View File

@@ -40,6 +40,9 @@ export type TriggerData = {
text: string;
} | {
callback: (value: NoteDetailWidget | PromiseLike<NoteDetailWidget>) => void
} | {
// For "searchNotes"
searchString: string | undefined;
}
class AppContext extends Component {