File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { BaseChart } from './components'
2
+ import { ReactiveDataMixin , ReactivePropMixin } from './mixins'
2
3
3
4
declare module 'vue-chartjs' {
4
5
export function generateChart ( chartId : string , chartType : string ) : any ;
@@ -12,8 +13,8 @@ declare module 'vue-chartjs' {
12
13
export class Bubble extends BaseChart { }
13
14
export class Scatter extends BaseChart { }
14
15
export const mixins : {
15
- reactiveData : any
16
- reactiveProp : any
16
+ reactiveData : typeof ReactiveDataMixin
17
+ reactiveProp : typeof ReactivePropMixin
17
18
}
18
19
}
19
20
Original file line number Diff line number Diff line change
1
+ import Vue from 'vue'
2
+
3
+ export declare class ReactiveDataMixin extends Vue {
4
+ chartData : any ;
5
+ }
6
+
7
+ export declare class ReactivePropMixin extends Vue {
8
+ readonly chartData : any ;
9
+ }
You can’t perform that action at this time.
0 commit comments