forked from adaltas/node-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
224 lines (212 loc) · 6.58 KB
/
Copy pathindex.d.ts
File metadata and controls
224 lines (212 loc) · 6.58 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/// <reference types="node" />
import * as stream from "stream";
export type Callback = (err: Error | undefined, output: string) => void;
export type RecordDelimiter =
| string
| Buffer
| "unix"
| "mac"
| "windows"
| "ascii"
| "unicode";
export type CastReturnObject = { value: string } & Pick<
Options,
| "delimiter"
| "escape"
| "quote"
| "quoted"
| "quoted_empty"
| "quoted_string"
| "quoted_match"
| "record_delimiter"
>;
export type Cast<T> = (
value: T,
context: CastingContext,
) => string | null | CastReturnObject;
export type PlainObject<T> = Record<string, T>;
export type Input = unknown[];
export interface ColumnOption {
key: string | (string | number)[];
header?: string;
}
export interface CastingContext {
readonly column?: number | string;
readonly header: boolean;
readonly index: number;
readonly records: number;
}
export interface OptionsNormalized extends stream.TransformOptions {
/**
* 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>;
bigint?: Cast<bigint>;
/**
* Custom formatter for generic object values
*/
object?: Cast<Record<string, unknown>>;
string?: Cast<string>;
null?: Cast<null>;
undefined?: Cast<undefined>;
};
/**
* List of fields, applied when `transform` returns an object, order matters,
* read the transformer documentation for additional information. Columns are
* auto discovered in the first record when the user write objects. Columns
* can refer to nested properties of the input JSON,
* see the "header" option on how to print columns names on the first line
*/
columns: ReadonlyArray<string | ColumnOption> | PlainObject<string>;
/**
* Set the field delimiter, one character only, defaults to a comma.
*/
delimiter: string;
/**
* Add the value of "options.RecordDelimiter" on the last line, default to true.
*/
eof: boolean;
/**
* Defaults to the escape read option.
*/
escape: string;
/**
* Display the column names on the first line if the columns option is provided or discovered.
*/
header: boolean;
/**
* Display the column names on the first line as comment if the columns option is provided or discovered.
*/
header_as_comment?: string;
/**
* The quote characters, defaults to the ", an empty quote value will preserve the original field.
*/
quote: string;
/**
* 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: null | (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 'unix', 'mac', 'windows', 'ascii', 'unicode'
* defaults to '\n'.
*/
record_delimiter: RecordDelimiter;
/**
* Boolean, default to false, if true, fields that begin with `=`, `+`, `-`, `@`, `\t`, or `\r` will be prepended with a `'` to protect against csv injection attacks
*/
escape_formulas: boolean;
}
export interface Options extends stream.TransformOptions {
/**
* 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>;
bigint?: Cast<bigint>;
/**
* Custom formatter for generic object values
*/
object?: Cast<Record<string, unknown>>;
string?: Cast<string>;
null?: Cast<null>;
undefined?: Cast<undefined>;
};
/**
* List of fields, applied when `transform` returns an object, order matters,
* read the transformer documentation for additional information. Columns are
* auto discovered in the first record when the user write objects. Columns
* can refer to nested properties of the input JSON,
* see the "header" option on how to print columns names on the first line
*/
columns?: ReadonlyArray<string | ColumnOption> | PlainObject<string>;
/**
* 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;
/**
* Display the column names on the first line as comment if the columns option is provided or discovered.
*/
header_as_comment?: boolean | Buffer | string;
/**
* 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?: null | string | RegExp | (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 'unix', 'mac', 'windows', 'ascii', 'unicode'
* defaults to '\n'.
*/
record_delimiter?: RecordDelimiter;
/**
* Boolean, default to false, if true, fields that begin with `=`, `+`, `-`, `@`, `\t`, or `\r` will be prepended with a `'` to protect against csv injection attacks
*/
escape_formulas?: boolean;
}
export class Stringifier extends stream.Transform {
constructor(options: Options);
readonly options: OptionsNormalized;
}
declare function stringify(callback?: Callback): Stringifier;
declare function stringify(options: Options, callback?: Callback): Stringifier;
declare function stringify(input: Input, callback?: Callback): Stringifier;
declare function stringify(
input: Input,
options?: Options,
callback?: Callback,
): Stringifier;
// export default stringify
export { stringify };