node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
11 lines (8 loc) • 459 B
TypeScript
import { M as MigrationOptions } from '../../migrationOptions-BgtOZlq1.js';
import { D as DropOptions, N as Name } from '../../generalTypes-BlKhVJMl.js';
import '../../logger.js';
import '../../utils/createTransformer.js';
type DropViewOptions = DropOptions;
type DropView = (viewName: Name, dropOptions?: DropViewOptions) => string;
declare function dropView(mOptions: MigrationOptions): DropView;
export { type DropView, type DropViewOptions, dropView };