UNPKG

@highcharts/dashboards

Version:
22 lines (21 loc) 560 B
import type Options from './Options'; import type Globals from './Globals'; /** * Namespace for default options. */ declare namespace Defaults { /** * Default options for the Grid. * @internal */ const defaultOptions: Globals.DeepPartial<Options>; /** * Merge the default options with custom options. Commonly used for defining * reusable templates. * * @param options * The new custom chart options. */ function setOptions(options: Globals.DeepPartial<Options>): void; } export default Defaults;