import { TEditor } from '@udecode/slate-plugins-core'; import { Location } from 'slate'; import { QueryNodeOptions } from './QueryNodeOptions'; /** * Query the editor state. */ export interface QueryEditorOptions extends Pick { /** * Query the editor. */ filter?: (editor: TEditor) => boolean; /** * Location from where to lookup the node types (bottom-up) */ at?: Location; /** * When the selection is at the start of the block above. */ selectionAtBlockStart?: boolean; /** * When the selection is at the end of the block above. */ selectionAtBlockEnd?: boolean; } //# sourceMappingURL=QueryEditorOptions.d.ts.map