Skip to content

Commit

Permalink
fix(node): vendor readable-stream from esm.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
cjihrig committed Aug 30, 2022
1 parent f2cd730 commit 3cc8ac3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 77 deletions.
82 changes: 6 additions & 76 deletions node/_stream.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node/internal/crypto/cipher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export interface CipherOCBOptions extends TransformOptions {
authTagLength: number;
}

export interface Cipher extends Transform {
export interface Cipher extends ReturnType<typeof Transform> {
update(data: BinaryLike): Buffer;
update(data: string, inputEncoding: Encoding): Buffer;
update(
Expand Down

0 comments on commit 3cc8ac3

Please sign in to comment.