Skip to content

Commit

Permalink
add missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
junedchhipa committed Oct 25, 2024
1 parent 5e904b3 commit 5ff4b4c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions projects/ng-apexcharts/src/lib/model/apex-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,10 @@ export interface ApexDataLabels {
dropShadow?: ApexDropShadow;
};
dropShadow?: ApexDropShadow;
formatter?(val: string | number | number[], opts?: any): string | number;
formatter?(
val: string | number | number[],
opts?: any
): string | number | string[];
}

export interface ApexResponsive {
Expand All @@ -802,7 +805,7 @@ export interface 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 5ff4b4c

Please sign in to comment.