UNPKG

unstated-enhancers

Version:
10 lines (9 loc) 302 B
import * as React from 'react'; import { Container } from 'unstated'; declare type SubscribeProps = { loading: React.ReactNode; to: Container<any>[]; children(...instances: Container<any>[]): React.ReactNode; }; export default function SubscribeGate(props: SubscribeProps): any; export {};