1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-22 07:09:10 +00:00
Sonarr/frontend/typings/worker-loader.d.ts
2025-01-19 12:11:08 -08:00

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;
}