File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ export interface ChartProps {
1313
1414declare module '@vue/runtime-core' {
1515 export interface GlobalComponents {
16- HighchartsVue : DefineComponent < ChartProps , { } , { } >
16+ HighchartsVue : DefineComponent < ChartProps , { chart : Highcharts . Chart } , { } >
1717 }
1818}
1919
2020export type ChartUpdateArgs = [ boolean , boolean , Highcharts . AnimationOptionsObject ] ;
2121
22- export const Chart : DefineComponent < ChartProps > ;
22+ export const Chart : DefineComponent < ChartProps , { chart : Highcharts . Chart } > ;
2323
2424export interface HCVueInstallOptions {
2525 tagName ?: string ;
2626 highcharts ?: typeof Highcharts ;
2727}
2828
29- export default function install ( app : App , options ?: HCVueInstallOptions ) : void ;
29+ export default function install ( app : App , options ?: HCVueInstallOptions ) : void ;
You can’t perform that action at this time.
0 commit comments