@highcharts/dashboards
Version:
Highcharts Dashboards framework
11 lines (10 loc) • 356 B
TypeScript
import type ColorType from '../Core/Color/ColorType';
import type Options from '../Core/Options';
declare module '../Core/Series/DataLabelOptions' {
interface DataLabelOptions {
connectorColor?: ColorType;
}
}
export type HighContrastThemeOptions = DeepPartial<Options>;
declare const theme: HighContrastThemeOptions;
export default theme;