shims-vue.d.ts 603 B

123456789101112131415161718192021
  1. /* eslint-disable */
  2. declare module '*.vue' {
  3. import type { DefineComponent } from 'vue'
  4. const component: DefineComponent<{}, {}, any>
  5. export default component
  6. }
  7. // 参考https://webpack.html.cn/loaders/worker-loader.html
  8. declare module 'worker-loader!*' {
  9. // You need to change `Worker`, if you specified a different value for the `workerType` option
  10. class WebpackWorker extends Worker {
  11. constructor();
  12. }
  13. // Uncomment this if you set the `esModule` option to `false`
  14. // export = WebpackWorker;
  15. export default WebpackWorker;
  16. }
  17. declare module 'mockjs'
  18. declare module 'protobufjs'