UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

11 lines (10 loc) 427 B
import type { MigrationOptions } from '../../types'; import type { FunctionParam } from '../functions'; import type { Name } from '../generalTypes'; export interface OperatorListDefinition { type: 'function' | 'operator'; number: number; name: Name; params?: FunctionParam[]; } export declare function operatorMap(mOptions: MigrationOptions): ({ type, number, name, params }: OperatorListDefinition) => string;