@cortexql/ts2graphql
Version:
A TypeScrpt transpiler to GraphQL for your project
17 lines (16 loc) • 469 B
TypeScript
import * as Yargs from 'yargs';
export interface Arguments extends Yargs.Arguments {
project: string;
typesDir: string;
mutationDir: string;
queryDir: string;
subscriptionDir: string;
validatorsDir: string;
scalarsDir: string;
output: string;
}
export interface Argv extends Yargs.Argv {
argv: Arguments;
}
export declare const builder: (yargs?: Yargs.Argv) => Argv;
export declare const handler: (argv: Arguments) => Promise<void>;