typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
13 lines (12 loc) • 355 B
TypeScript
import * as yargs from "yargs";
/**
* Shows all migrations and whether they have been run or not.
*/
export declare class MigrationShowCommand implements yargs.CommandModule {
command: string;
describe: string;
builder(args: yargs.Argv): yargs.Argv<{
dataSource: unknown;
}>;
handler(args: yargs.Arguments): Promise<void>;
}