PluginView
A stateful object that can be installed in an editor by a plugin.
type PluginView = {
update?: (view: EditorView, prevState: EditorState) => void;
destroy?: () => void;
};§Type
§
{
[src]update?: (view: EditorView, prevState: EditorState) => void;
destroy?: () => void;
}