UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

6 lines (5 loc) 246 B
import type { Name, Value } from '../operations/generalTypes'; export type Literal = (v: Name) => string; export declare function createTransformer(literal: Literal): (statement: string, mapping?: { [key: string]: Name | Value; }) => string;