UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

6 lines (5 loc) 288 B
import type { Nullable } from '../generalTypes'; export type ViewOptions = { [key: string]: boolean | number | string; }; export declare function viewOptionStr<TViewOptions extends Nullable<ViewOptions>, TKey extends keyof TViewOptions>(options: TViewOptions): (key: TKey) => string;