UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

7 lines (6 loc) 412 B
import type { MigrationOptions } from '../../types'; import type { DropOptions, Name } from '../generalTypes'; import type { FunctionParam } from './shared'; export type DropFunctionOptions = DropOptions; export type DropFunction = (functionName: Name, functionParams: FunctionParam[], dropOptions?: DropFunctionOptions) => string; export declare function dropFunction(mOptions: MigrationOptions): DropFunction;