mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-22 07:09:10 +00:00
10 lines
318 B
TypeScript
10 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;
|
|
}
|