typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
13 lines (12 loc) • 347 B
TypeScript
import yargs from "yargs";
/**
* Drops all tables of the database from the given dataSource.
*/
export declare class SchemaDropCommand implements yargs.CommandModule {
command: string;
describe: string;
builder(args: yargs.Argv): yargs.Argv<{
dataSource: unknown;
}>;
handler(args: yargs.Arguments): Promise<void>;
}