Skip to content

Commit

Permalink
fix: node types (#1195)
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed May 12, 2022
1 parent 85d38da commit d68ab36
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
13 changes: 7 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Expand Up @@ -62,6 +62,7 @@
"@types/connect": "^3.4.35",
"@types/express": "^4.17.13",
"@types/mime-types": "^2.1.1",
"@types/node": "^12.20.43",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"babel-jest": "^27.4.6",
"chokidar": "^3.5.1",
Expand Down
2 changes: 1 addition & 1 deletion types/index.d.ts
Expand Up @@ -201,7 +201,7 @@ type Watching = Compiler["watching"];
type MultiWatching = ReturnType<Compiler["watch"]>;
type OutputFileSystem = Compiler["outputFileSystem"] & {
createReadStream?: typeof import("fs").createReadStream;
statSync?: import("fs").StatSyncFn;
statSync?: typeof import("fs").statSync;
lstat?: typeof import("fs").lstat;
readFileSync?: typeof import("fs").readFileSync;
};
Expand Down

0 comments on commit d68ab36

Please sign in to comment.