UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

7 lines (6 loc) 265 B
import type { Name } from '../operations/generalTypes'; export interface SchemalizeOptions { readonly shouldDecamelize: boolean; readonly shouldQuote: boolean; } export declare function createSchemalize(options: SchemalizeOptions): (value: Name) => string;