Skip to content

Commit

Permalink
fix eslint errors due to missing @types/node
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed Jan 10, 2025
1 parent 7ba7d6d commit c2dcc1e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/node/internal/streams_util.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-redundant-type-constituents */
import type { FinishedOptions } from 'node:stream';

type FinishedStream =
Expand Down
1 change: 0 additions & 1 deletion src/node/internal/zlib.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ export abstract class CompressionStream {
public [owner_symbol]: Zlib;
// Not used by C++ implementation but required to be Node.js compatible.
public inOff: number;
/* eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents */
public buffer: NodeJS.TypedArray | null;
public cb: () => void;
public availOutBefore: number;
Expand Down
1 change: 1 addition & 0 deletions tools/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ js_library(
visibility = ["//visibility:public"],
deps = [
"//:node_modules/@eslint/js",
"//:node_modules/@types/node",
"//:node_modules/typescript-eslint",
],
)

0 comments on commit c2dcc1e

Please sign in to comment.