@highcharts/dashboards
Version:
Highcharts Dashboards framework
22 lines (21 loc) • 560 B
TypeScript
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;