mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-22 15:19:10 +00:00
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
|
declare module '*.worker.ts' {
|
||
|
// You need to change `Worker`, if you specified a different value for the `workerType` option
|
||
|
class WebpackWorker extends Worker {
|
||
|
constructor();
|
||
|
}
|
||
|
|
||
|
// Uncomment this if you set the `esModule` option to `false`
|
||
|
// export = WebpackWorker;
|
||
|
export default WebpackWorker;
|
||
|
}
|