1.0.5 • Published 6 months ago

@types/pg-format v1.0.5

Weekly downloads
12,158
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for pg-format 1.0
// Project: https://github.com/datalanche/node-pg-format
// Definitions by: Alec Zopf <https://github.com/zopf>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
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.