@technobuddha/library
Version:
A large library of useful functions
9 lines (8 loc) • 388 B
TypeScript
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;