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