UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

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