Files
tk-ws-scrcpy/typings/worker-loader.d.ts
2025-07-30 13:39:32 +08:00

11 lines
338 B
TypeScript

declare module 'worker-loader!*' {
// 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;
}