import { Cell } from '@ephox/katamari'; import Editor from 'tinymce/core/api/Editor'; import { SearchState } from '../core/Actions'; import * as Dialog from '../ui/Dialog'; const register = (editor: Editor, currentSearchState: Cell): void => { editor.addCommand('SearchReplace', () => { Dialog.open(editor, currentSearchState); }); }; export { register };