t2-model-skinner/worker-loader.d.ts

12 lines
327 B
TypeScript
Raw Normal View History

2022-12-03 06:26:17 +00:00
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;
}