UNPKG

359 BTypeScriptView Raw
1import * as yargs from "yargs";
2/**
3 * Shows sql to be executed by schema:sync command.
4 */
5export declare class SchemaLogCommand implements yargs.CommandModule {
6 command: string;
7 describe: string;
8 builder(args: yargs.Argv): yargs.Argv<{
9 c: string;
10 } & {
11 f: string;
12 }>;
13 handler(args: yargs.Arguments): Promise<void>;
14}