mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05: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;
|
|
}
|