UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

8 lines (7 loc) 389 B
import { DatabaseBase } from "../../definitions/database-definition"; import { DropBuilder } from "./drop-builder"; import { DdlBase } from "../ddl-base"; import { MapperTable } from "../../mapper-table"; export declare class Drop<T> extends DdlBase<T, DropBuilder<T>> { constructor(typeT: new () => T, mapperTable: MapperTable, database?: DatabaseBase, enableLog?: boolean); }