UNPKG

@technobuddha/library

Version:
9 lines (8 loc) 388 B
declare type GraphQLObject = { [Key in string]: GraphQLValue; }; declare type GraphQLArray = GraphQLValue[]; declare type GraphQLValue = number | string | null | boolean | GraphQLArray | GraphQLObject; export declare function graphQL(template: TemplateStringsArray, ...args: GraphQLValue[]): string; export declare function graphQL(arg: GraphQLValue): string; export default graphQL;