UNPKG
jiro-ui
Version:
latest (0.0.2)
0.0.2
A Mithril.js UI library based from construct-ui
nenjotsu.github.io/jiro-ui
nenjotsu/jiro-ui
jiro-ui
/
lib
/
esm
/
components
/
form
/
FormLabel.d.ts
9 lines
(8 loc)
•
298 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
m
from
'mithril'
;
import
{
IAttrs
}
from
'../../_shared'
;
export
interface
IFormLabelAttrs
extends
IAttrs
{ [
htmlAttrs
:
string
]:
any
; }
export
declare
class
FormLabel
implements
m.
Component
<
IFormLabelAttrs
> {
view
({ attrs, children }: m.
Vnode
<
IFormLabelAttrs
>): m.
Vnode
<
any
,
any
>; }