UNPKG

graphql-typed-client

Version:

A tool that generates a strongly typed client library for any GraphQL endpoint. The client allows writing GraphQL queries as plain JS objects (with type safety, awesome code completion experience, custom scalar type mapping, type guards and more)

6 lines (5 loc) 399 B
export declare const ensurePath: (path: string[], clear?: boolean) => Promise<void>; export declare const requireModuleFromPath: (path: string[]) => any; export declare const readFileFromPath: (path: string[]) => Promise<string>; export declare const writeFileToPath: (path: string[], content: string) => Promise<void>; export declare const readFilesAndConcat: (files: string[]) => Promise<string>;