UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

8 lines (7 loc) 575 B
import { type InternalAgColorType, type InternalAgGradientColor } from 'ag-charts-core'; import type { AgPatternColor } from 'ag-charts-types'; export declare function isGradientFill(fill: any): fill is InternalAgGradientColor; export declare function isGradientFillArray(fills: any): fills is InternalAgColorType[]; export declare function isStringFillArray(fills: any): fills is string[]; export declare function isPatternFill(fill: any): fill is AgPatternColor; export declare function isGradientOrPatternFill(fill: any): fill is InternalAgGradientColor | AgPatternColor;