UNPKG
fantasy-editor
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
A React Rich Text Editor Based On Slate
fantasy-editor.jieee.dev
lingjieee/fantasy-editor
fantasy-editor
/
lib
/
utils
/
on-dom-before-input-plugins.d.ts
4 lines
(3 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
import
{
Editor
}
from
'slate'
;
import
{
OnDOMBeforeInput
,
SlatePlugin
}
from
'../core/types'
;
export
declare
const
onDOMBeforeInputPlugins
:
(
editor
:
Editor
,
plugins
:
SlatePlugin
[],
onDOMBeforeInputList
:
OnDOMBeforeInput
[]
) =>
(
event
:
Event
) =>
void
;