UNPKG

typeorm-extension

Version:

A library to create/drop database, simple seeding data sets, ...

11 lines (10 loc) 273 B
import type { DatabaseDropContext } from './type'; /** * Drop database for specified driver in ConnectionOptions. * * @throws DriverError * @throws OptionsError * * @param context */ export declare function dropDatabase(context?: DatabaseDropContext): Promise<any>;