Skip to content

Commit

Permalink
fix: custom types
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirvolek committed Sep 19, 2023
1 parent 8a81787 commit 84f182f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/json-stream.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ declare module 'JSONStream' {
recurse: boolean;
}

export declare function parse(pattern: any): NodeJS.ReadWriteStream;
export declare function parse(patterns: any[]): NodeJS.ReadWriteStream;
export declare function parse(pattern: unknown): NodeJS.ReadWriteStream;
export declare function parse(patterns: unknown[]): NodeJS.ReadWriteStream;

/**
* Create a writable stream.
Expand Down

0 comments on commit 84f182f

Please sign in to comment.