@highcharts/dashboards
Version:
Highcharts Dashboards framework
31 lines (23 loc) • 752 B
TypeScript
/*!*
*
* Copyright (c) Highsoft AS. All rights reserved.
*
*!*/
import * as _Dashboards from "../dashboards";
import _EditMode from "../es-modules/Dashboards/EditMode/EditMode";
import _Fullscreen from "../es-modules/Dashboards/EditMode/Fullscreen";
import "../es-modules/Dashboards/EditMode/EditMode";
import "../es-modules/Dashboards/EditMode/Fullscreen";
declare module "../dashboards" {
const EditMode: typeof _EditMode;
const Fullscreen: typeof _Fullscreen
}
/**
* Adds the module to the imported Dashboards namespace.
*
* @param dashboards
* The imported Dashboards namespace to extend.
*/
declare function factory(dashboards: typeof _Dashboards): void;
export let Dashboards: typeof _Dashboards;
export default factory;