(editor: Editor, searchValue: string)
| 22 | |
| 23 | export const MentionStore = { |
| 24 | setSearchValue(editor: Editor, searchValue: string) { |
| 25 | const store = getMentionStore(editor) |
| 26 | store.setState({ searchValue }) |
| 27 | }, |
| 28 | |
| 29 | setOpen(editor: Editor, open: boolean) { |
| 30 | const store = getMentionStore(editor) |
nothing calls this directly
no test coverage detected
searching dependent graphs…