| 123456789101112131415161718192021 |
- /* eslint-disable */
- declare module '*.vue' {
- import type { DefineComponent } from 'vue'
- const component: DefineComponent<{}, {}, any>
- export default component
- }
- // 参考https://webpack.html.cn/loaders/worker-loader.html
- 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;
- }
- declare module 'mockjs'
- declare module 'protobufjs'
|