node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
8 lines (7 loc) • 368 B
TypeScript
import type { Name } from '../operations/generalTypes';
/** @deprecated Use createSchemalize(options) instead. */
export declare function createSchemalize(shouldDecamelize: boolean, shouldQuote: boolean): (value: Name) => string;
export declare function createSchemalize(options: {
shouldDecamelize: boolean;
shouldQuote: boolean;
}): (value: Name) => string;