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) 401 B
import * as yargs from "yargs"; /** * Reverts last migration command. */ export declare class MigrationRevertCommand 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>; }