UNPKG
kabulmark
Version:
latest (1.1.0)
1.1.0
1.0.2
1.0.1
1.0.0
A React-based rich text editor built as a wrapper over Meta's Lexical library.
kabulmark
/
dist
/
plugins
/
OnChangePlugin.d.ts
6 lines
(5 loc)
•
163 B
TypeScript
View Raw
1
2
3
4
5
6
type
OnChangePluginProps
= {
onChange
?:
(
html
:
string
) =>
void
; };
export
default
function
OnChangePlugin
(
{ onChange }:
OnChangePluginProps
):
null
;
export
{};