npm.io
1.0.5 • Published 2 years ago

@types/pg-format

Licence
MIT
Version
1.0.5
Deps
0
Size
4 kB
Vulns
0
Weekly
0
Stars
51.4K

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

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 0939 GMT
  • Dependencies: none

Credits

These definitions were written by Alec Zopf.