UNPKG

471 BTypeScriptView Raw
1export declare type Maybe<T> = T | null | undefined;
2export declare type ReactComponentLike = string | ((props: any, context?: any) => any) | (new (props: any, context?: any) => any);
3export declare type ReactElementLike = {
4 type: ReactComponentLike;
5 props: any;
6 key: string | number | null;
7};
8export declare type ReactNodeLike = {} | ReactElementLike | Array<ReactNodeLike> | string | number | boolean | null | undefined;
9//# sourceMappingURL=types.d.ts.map
\No newline at end of file