Skip to content

Commit

Permalink
feat(csv-stringify): ts extends options with stream.TransformOptions (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Nov 6, 2021
1 parent 5a3aeff commit cc30d66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/csv-stringify/dist/cjs/index.d.ts
Expand Up @@ -17,7 +17,7 @@ export interface CastingContext {
readonly index: number;
readonly records: number;
}
export interface Options {
export interface Options extends stream.TransformOptions {
/**
* Prepend the byte order mark (BOM) to the output stream.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/csv-stringify/dist/esm/index.d.ts
Expand Up @@ -17,7 +17,7 @@ export interface CastingContext {
readonly index: number;
readonly records: number;
}
export interface Options {
export interface Options extends stream.TransformOptions {
/**
* Prepend the byte order mark (BOM) to the output stream.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/csv-stringify/lib/index.d.ts
Expand Up @@ -17,7 +17,7 @@ export interface CastingContext {
readonly index: number;
readonly records: number;
}
export interface Options {
export interface Options extends stream.TransformOptions {
/**
* Prepend the byte order mark (BOM) to the output stream.
*/
Expand Down

0 comments on commit cc30d66

Please sign in to comment.