node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
6 lines (5 loc) • 395 B
TypeScript
import type { MigrationOptions } from '../../types';
import type { Name } from '../generalTypes';
import type { OperatorListDefinition } from './shared';
export type RemoveFromOperatorFamily = (operatorFamilyName: Name, indexMethod: Name, operatorList: OperatorListDefinition[]) => string;
export declare const removeFromOperatorFamily: (mOptions: MigrationOptions) => RemoveFromOperatorFamily;