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
/
PendingConsumer.d.ts
9 lines
(8 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
FC
,
ReactNode
}
from
'react'
;
export
interface
IPendingConsumer
{
children
:
ReactNode
| (
(
data
: { isPending:
boolean
; }
) =>
ReactNode
); }
declare
const
PendingConsumer
:
FC
<
IPendingConsumer
>;
export
default
PendingConsumer
;