Skip to content

Commit bc182e8

Browse files
authored
Merge pull request #4988 from daiboom/fix/formatter-return-type
fix: the wrong return type of the formatter function
2 parents 764a702 + cf03b0a commit bc182e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/apexcharts.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ type ApexDataLabels = {
952952
dropShadow?: ApexDropShadow
953953
}
954954
dropShadow?: ApexDropShadow
955-
formatter?(val: string | number | number[], opts?: any): string | number | (string | string)[]
955+
formatter?(val: string | number | number[], opts?: any): string | number | (string | number)[]
956956
}
957957

958958
type ApexResponsive = {

0 commit comments

Comments
 (0)