Skip to content
This repository was archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Add devtoolNamespace TypeScript declaration (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirlancelot authored Jan 29, 2020
1 parent 6032b28 commit fe6c6da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ config.output
.devtoolFallbackModuleFilenameTemplate(devtoolFallbackModuleFilenameTemplate)
.devtoolLineToLine(devtoolLineToLine)
.devtoolModuleFilenameTemplate(devtoolModuleFilenameTemplate)
.devtoolNamespace(devtoolNamespace)
.filename(filename)
.hashFunction(hashFunction)
.hashDigest(hashDigest)
Expand Down
1 change: 1 addition & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ declare namespace Config {
devtoolFallbackModuleFilenameTemplate(value: any): this;
devtoolLineToLine(value: any): this;
devtoolModuleFilenameTemplate(value: any): this;
devtoolNamespace(value: string): this;
globalObject(value: string): this;
hashFunction(value: string): this;
hashDigest(value: string): this;
Expand Down
1 change: 1 addition & 0 deletions types/test/webpack-chain-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ config
.chunkLoadTimeout(1000)
.crossOriginLoading(true)
.devtoolFallbackModuleFilenameTemplate('')
.devtoolNamespace('')
.devtoolLineToLine('')
.devtoolModuleFilenameTemplate('')
.filename('main.js')
Expand Down

0 comments on commit fe6c6da

Please sign in to comment.