From f033e8e22b062b58d1ad9fd96e7c2f292a617830 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 29 Jun 2026 15:34:35 +1200 Subject: [PATCH] Remove components.d.ts and add to gitignore --- .gitignore | 1 + src/components.d.ts | 22 ---------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 src/components.d.ts diff --git a/.gitignore b/.gitignore index 6e1fb67..be93aee 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules docs/.vitepress/dist docs/.vitepress/cache docs/components +**/components.d.ts diff --git a/src/components.d.ts b/src/components.d.ts deleted file mode 100644 index 313d49d..0000000 --- a/src/components.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -// @ts-nocheck -// Generated by unplugin-vue-components -// Read more: https://github.com/vuejs/core/pull/3399 -export {} - -declare module 'vue' { - export interface GlobalComponents { - ElButton: typeof import('element-plus/es')['ElButton'] - ElOption: typeof import('element-plus/es')['ElOption'] - ElPopover: typeof import('element-plus/es')['ElPopover'] - ElSelect: typeof import('element-plus/es')['ElSelect'] - HeatmapPlot: typeof import('./components/HeatmapPlot.vue')['default'] - PlotControls: typeof import('./components/PlotControls.vue')['default'] - PlotVuer: typeof import('./components/PlotVuer.vue')['default'] - PlotVuerOriginal: typeof import('./components/PlotVuer-original.vue')['default'] - RouterLink: typeof import('vue-router')['RouterLink'] - RouterView: typeof import('vue-router')['RouterView'] - TimeseriesPlot: typeof import('./components/TimeseriesPlot.vue')['default'] - } -}