UNPKG

ag-charts-community

Version:

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

12 lines (11 loc) 531 B
import { type OptionsDefs } from 'ag-charts-core'; import type { AgChartTheme, AgChartThemeName } from 'ag-charts-types'; import { ChartTheme } from '../themes/chartTheme'; type SpecialThemeName = 'ag-financial' | 'ag-financial-dark'; type ThemeMap = { [key in AgChartThemeName | SpecialThemeName | 'undefined' | 'null']?: () => ChartTheme; }; export declare const themes: ThemeMap; export declare const getChartTheme: (value: unknown) => ChartTheme; export declare const themeOptionsDef: OptionsDefs<AgChartTheme>; export {};