1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| import * as yargs from "yargs";
| /**
| * Runs migration command.
| */
| export declare class MigrationRunCommand implements yargs.CommandModule {
| command: string;
| describe: string;
| aliases: string;
| builder(args: yargs.Argv): yargs.Argv<{
| connection: string;
| } & {
| transaction: string;
| } & {
| config: string;
| }>;
| handler(args: yargs.Arguments): Promise<void>;
| }
|
|