UNPKG
@kedao/editor
Version:
latest (0.0.2)
0.0.2
0.0.1
Rich Text Editor Based On Draft.js
@kedao/editor
/
lib
/
renderers
/
decorators
/
Link
/
index.d.ts
11 lines
(10 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
PropTypes
from
'prop-types'
;
declare
const
Link
: { (
props
:
any
):
JSX
.
Element
;
propTypes
: {
children
:
PropTypes
.
Requireable
<
any
>;
entityKey
:
PropTypes
.
Requireable
<
any
>;
contentState
:
PropTypes
.
Requireable
<
any
>; }; };
export
default
Link
;