Installation
npm install --save @types/pg-format
Summary
This package contains type definitions for pg-format (https://github.com/datalanche/node-pg-format).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pg-format.
export = format;
declare function format(fmt: string, ...args: any[]): string;
declare namespace format {
function config(config?: {
pattern: {
ident?: string | undefined,
literal?: string | undefined,
string?: string | undefined
}
}): void;
function ident(val: string | number | boolean | any[] | Date): string;
function literal(val: string | number | boolean | any[] | Date | object | null | undefined): string;
function string(val: string | number | boolean | any[] | Date | object | null | undefined): string;
function withArray(fmt: string, array: any[]): string;
}
Additional Details
- Last updated: Thu, 08 Jul 2021 20:19:33 GMT
- Dependencies: none
- Global values: none
Credits
These definitions were written by Alec Zopf.