UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

7 lines (6 loc) 254 B
import type { MigrationOptions } from '../types'; import type { Name, Value } from './generalTypes'; export type Sql = (sqlStr: string, args?: { [key: string]: Name | Value; }) => string; export declare function sql(mOptions: MigrationOptions): Sql;