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

11 lines
318 B
TypeScript
Raw Normal View History

2024-12-16 14:51:45 +00:00
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;
}