UNPKG

graphiql

Version:
23 lines (19 loc) 427 B
export type Maybe<T> = T | null | undefined; export type ReactComponentLike = | string | ((props: any, context?: any) => any) | (new (props: any, context?: any) => any); export type ReactElementLike = { type: ReactComponentLike; props: any; key: string | number | null; }; export type ReactNodeLike = | {} | ReactElementLike | Array<ReactNodeLike> | string | number | boolean | null | undefined;