@types/pg-format
Version:
TypeScript definitions for pg-format
37 lines (29 loc) • 1.25 kB
Markdown
# 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.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pg-format/index.d.ts)
````ts
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: Tue, 07 Nov 2023 09:09:39 GMT
* Dependencies: none
# Credits
These definitions were written by [Alec Zopf](https://github.com/zopf).