차트 정의 완료

This commit is contained in:
2025-08-24 16:23:27 +09:00
parent 44f70df8c2
commit 04131e7506
11 changed files with 537 additions and 126 deletions

View File

@@ -7,6 +7,9 @@ export {}
/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
ChartMid: typeof import('./../src/components/ChartMid.vue')['default']
ChartTop: typeof import('./../src/components/ChartTop.vue')['default']
ChatTop: typeof import('./../src/components/ChatTop.vue')['default']
LWChart: typeof import('./../src/components/LWChart.vue')['default']
LWChartOption: typeof import('./../src/components/LWChartOption.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']

3
types/imports.d.ts vendored
View File

@@ -9,6 +9,9 @@ declare global {
const api: typeof import('../src/utils/api')['default']
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
const calculateBollingerBands: typeof import('../src/utils/meter')['calculateBollingerBands']
const calculateEMA: typeof import('../src/utils/meter')['calculateEMA']
const calculateMACD: typeof import('../src/utils/meter')['calculateMACD']
const computed: typeof import('vue')['computed']
const computedAsync: typeof import('@vueuse/core')['computedAsync']
const computedEager: typeof import('@vueuse/core')['computedEager']