@gqlts/cli
Version:
Generate a client sdk from your GraphQl API
20 lines (19 loc) • 502 B
TypeScript
export declare const RUNTIME_LIB_NAME = "@gqlts/runtime";
export interface Config {
verbose?: boolean;
endpoint?: string;
useGet?: boolean;
schema?: string;
output?: string;
methodPrefix?: string;
methodSuffix?: string;
headers?: Record<string, string>;
scalarTypes?: {
[k: string]: string;
};
'standalone-name'?: string;
'standalone-compress'?: boolean;
onlyEsModules?: boolean;
onlyCJSModules?: boolean;
sortProperties?: boolean;
}