UNPKG
dareway-rui
Version:
latest (2.2.36)
2.2.36
dareway-rui
/
build
/
taglib
/
form
/
CollapsibleBlock
/
index.d.ts
11 lines
(9 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
*
as
React
from
'react'
;
declare
interface
propTypes {
name
:
string
;
value
:
string
;
collapsed
:
boolean
;
onExpand
:
Function
;
onCollapse
:
Function
; }
export
default
class
CollapsibleBlock
extends
React.Component
<propTypes> {}