UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

17 lines (16 loc) 390 B
import * as yargs from "yargs"; /** * Runs migration command. */ export declare class MigrationRunCommand implements yargs.CommandModule { command: string; describe: string; builder(args: yargs.Argv): yargs.Argv<{ dataSource: unknown; } & { transaction: string; } & { fake: boolean; }>; handler(args: yargs.Arguments): Promise<void>; }