mirror of
https://github.com/exogen/t2-model-skinner.git
synced 2026-01-20 03:34:47 +00:00
12 lines
327 B
TypeScript
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;
|
|
}
|