UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, 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>; }