graphiql
Version:
An graphical interactive in-browser GraphQL IDE.
23 lines (19 loc) • 427 B
text/typescript
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;