Skip to content

Commit

Permalink
Merge pull request #4772 from cyrilf/patch-1
Browse files Browse the repository at this point in the history
Update types to add missing arguments and return types
  • Loading branch information
junedchhipa authored Oct 25, 2024
2 parents c180f09 + 81af376 commit d41a0cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/apexcharts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ type ApexDataLabels = {
dropShadow?: ApexDropShadow
}
dropShadow?: ApexDropShadow
formatter?(val: string | number | number[], opts?: any): string | number
formatter?(val: string | number | number[], opts?: any): string | number | string[]
}

type ApexResponsive = {
Expand All @@ -934,7 +934,7 @@ type ApexResponsive = {

type ApexTooltipY = {
title?: {
formatter?(seriesName: string): string
formatter?(seriesName: string, opts?: any): string
}
formatter?(val: number, opts?: any): string
}
Expand Down

0 comments on commit d41a0cd

Please sign in to comment.