1 | import type { Handler } from '@remirror/core-types';
|
2 | import { PlainExtension } from '../extension';
|
3 | import type { StateUpdateLifecycleProps } from '../types';
|
4 | export interface DocChangedOptions {
|
5 | docChanged?: Handler<(props: StateUpdateLifecycleProps) => void>;
|
6 | }
|
7 | export declare class DocChangedExtension extends PlainExtension<DocChangedOptions> {
|
8 | get name(): "docChanged";
|
9 | onStateUpdate(props: StateUpdateLifecycleProps): void;
|
10 | }
|