Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BubbleMenuPluginProps

interface BubbleMenuPluginProps {
editor: Editor;
element: HTMLElement;
pluginKey: PluginKey | string;
shouldShow?: ((props: {
editor: Editor;
view: EditorView;
state: EditorState;
oldState?: EditorState;
from: number;
to: number;
}
) => boolean
)
| null;
tippyOptions?: Partial<Props>;
updateDelay?: number;
}

§Properties

§
element: HTMLElement
[src]
§
pluginKey: PluginKey | string
[src]
§
shouldShow?: ((props: {
editor: Editor;
view: EditorView;
state: EditorState;
oldState?: EditorState;
from: number;
to: number;
}
) => boolean
)
| null
[src]
§
tippyOptions?: Partial<Props>
[src]
§
updateDelay?: number
[src]