UNPKG
@schematic-forms/react
Version:
latest (0.9.6)
0.9.6
0.9.5
0.9.0
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.3
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
react adapter for schematic forms
Astroner/schematic-forms-react
@schematic-forms/react
/
lib
/
components
/
ValueConsumer.d.ts
11 lines
(10 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
, {
ReactNode
}
from
'react'
;
export
interface
IValueConsumer
{
field
:
string
;
initialValue
?:
any
;
children
: (
(
props
: { value:
any
; }
) =>
ReactNode
) |
ReactNode
; }
declare
const
_default
:
React
.
NamedExoticComponent
<
IValueConsumer
>;
export
default
_default;