t2-model-skinner/worker-loader.d.ts
2022-12-02 22:26:17 -08:00

12 lines
327 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;
}