UNPKG
saven
Version:
latest (1.0.1)
1.0.1
1.0.0
no
github.com/saven/superjs
saven/superjs
saven
/
packages
/
saven-components
/
types
/
Label.d.ts
15 lines
(10 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{
ComponentType
}
from
'react'
import
{
StandardProps
}
from
'./common'
interface
LabelProps
extends
StandardProps
{
/** * 绑定控件的 id */
for
?:
string
}
declare
const
Label
:
ComponentType
<
LabelProps
>
export
{
Label
}