UNPKG
ontime-components
Version:
latest (2.0.0)
2.0.0
1.1.2
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.0
List of react components
github.com/OntimeLengo/ontime-components
OntimeLengo/ontime-components
ontime-components
/
build
/
libs
/
interfaces.d.ts
13 lines
(12 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
interface
IStyle
{ [
key
:
string
]:
string
|
number
; }
interface
IProps
{
key
?:
string
;
className
?:
string
;
style
?:
IStyle
;
dataValue
?:
string
; }
interface
IState
{ }
export
{
IStyle
,
IProps
,
IState
};