UNPKG

typeorm-extension

Version:

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

11 lines (10 loc) 292 B
import type { DatabaseCreateContextInput } from '../type'; /** * Create database for specified driver in ConnectionOptions. * * @throws DriverError * @throws OptionsError * * @param input */ export declare function createDatabase(input?: DatabaseCreateContextInput): Promise<unknown>;