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) • 401 B
TypeScript
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>;
}