Skip to content

Commit 550e369

Browse files
authored
Merge pull request #147 from kernoeb/main
fix: type prop in VueApexCharts typings
2 parents 2f93d90 + bb0b716 commit 550e369

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

typings/vue-apexcharts.d.ts

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,7 @@ export interface VueApexChartsComponentProps {
66
readonly chart?: ApexCharts;
77
// props
88
options?: ApexOptions;
9-
type?:
10-
| "line"
11-
| "area"
12-
| "bar"
13-
| "histogram"
14-
| "pie"
15-
| "donut"
16-
| "radialBar"
17-
| "rangeBar"
18-
| "scatter"
19-
| "bubble"
20-
| "heatmap"
21-
| "candlestick"
22-
| "radar"
23-
| "polarArea";
9+
type?: NonNullable<ApexOptions['chart']>['type'];
2410
series: any;
2511
width?: string | number;
2612
height?: string | number;

0 commit comments

Comments
 (0)