wzp
2021-05-13 7d694a9113118daec5be7ac224dab46a3b20f106
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/// <reference types="node" />
 
import * as stream from "stream";
export = stringify
 
declare function stringify(callback?: stringify.Callback): stringify.Stringifier
declare function stringify(options: stringify.Options, callback?: stringify.Callback): stringify.Stringifier
declare function stringify(input: stringify.Input, callback?: stringify.Callback): stringify.Stringifier
declare function stringify(input: stringify.Input, options?: stringify.Options, callback?: stringify.Callback): stringify.Stringifier
declare namespace stringify {
    type Callback = (err?: null | Error, output?: string) => void
    type RecordDelimiter = string | Buffer | 'auto' | 'unix' | 'mac' | 'windows' | 'ascii' | 'unicode'
    type Cast<T> = (value: T, context: CastingContext) => string
    type PlainObject<T> = Record<string, T>
    type Input = any[]
    interface ColumnOption {
        key: string
        header?: string
    }
    interface CastingContext {
        readonly column?: number | string;
        readonly header: boolean;
        readonly index: number;
        readonly records: number;
    }
    interface Options {
        /**
         * Prepend the byte order mark (BOM) to the output stream.
         */
        bom?: boolean
        /**
         * Key-value object which defines custom cast for certain data types
         */
        cast?: {
            boolean?: Cast<boolean>
            date?: Cast<Date>
            number?: Cast<number>
            /**
             * Custom formatter for generic object values
             */
            object?: Cast<Record<string, any>>
            string?: Cast<string>
        }
        /**
         * List of fields, applied when `transform` returns an object
         * order matters
         * read the transformer documentation for additionnal information
         * columns are auto discovered in the first record when the user write objects
         * can refer to nested properties of the input JSON
         * see the "header" option on how to print columns names on the first line
         */
        columns?: string[] | PlainObject<string> | ColumnOption[]
        /**
         * Set the field delimiter, one character only, defaults to a comma.
         */
        delimiter?: string | Buffer
        /**
         * Add the value of "options.RecordDelimiter" on the last line, default to true.
         */
        eof?: boolean
        /**
         * Defaults to the escape read option.
         */
        escape?: string | Buffer
        /**
         * Display the column names on the first line if the columns option is provided or discovered.
         */
        header?: boolean
        /**
         * The quote characters, defaults to the ", an empty quote value will preserve the original field.
         */
        quote?: string | Buffer | boolean
        /**
         * Boolean, default to false, quote all the non-empty fields even if not required.
         */
        quoted?: boolean
 
        /**
         * Boolean, no default, quote empty fields and overrides `quoted_string` on empty strings when defined.
         */
        quoted_empty?: boolean
        /**
         * String or RegExp, no default, quote all fields matching a regular expression.
         */
        quoted_match?: string | RegExp
        /**
         * Boolean, default to false, quote all fields of type string even if not required.
         */
        quoted_string?: boolean
        /**
         * String used to delimit record rows or a special value
         * special values are 'auto', 'unix', 'mac', 'windows', 'ascii', 'unicode'
         * defaults to 'auto' (discovered in source or 'unix' if no source is specified).
         */
        record_delimiter?: RecordDelimiter
    }
    class Stringifier extends stream.Transform {
        constructor(options: Options)
        readonly options: Options
    }
}