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