Skip to content

Commit c403cfa

Browse files
committed
fix(composables): import 경로 및 타입 선언 오류 수정 (빌드 경고/에러 해결)
1 parent c6a33d9 commit c403cfa

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/composables/useProvidePivotData.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import { Ref, ref, provide, inject, computed, ComputedRef } from 'vue'
2-
import type { PivotData, PivotDataProps } from '@/helper/utilities.d'
3-
import { PivotData as PivotDataClass } from '@/helper/utilities.js'
2+
import type { PivotData } from '../helper/utilities.d'
3+
import { PivotData as PivotDataClass } from '../helper/utilities.js'
44

55
const PIVOT_DATA_KEY = Symbol('pivotData')
66

7-
interface ProvidePivotDataProps extends Partial<PivotDataProps> {
8-
heatmapMode?: 'full' | 'row' | 'col'
9-
tableColorScaleGenerator: (values: any[]) => (value: any) => any
10-
}
7+
interface ProvidePivotDataProps { [key: string]: any }
118

129
export interface PivotDataContext {
1310
pivotData: ComputedRef<PivotData | null>

0 commit comments

Comments
 (0)