@devtable/dashboard 14.60.5 → 14.60.6-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
- import { VizInstance } from '../../../types/plugin';
2
1
  import { IPanelInfo } from '../../../components/plugins';
2
+ import { VizInstance } from '../../../types/plugin';
3
3
  /**
4
4
  * Emit viz rendered event
5
5
  * @param instance
@@ -15,3 +15,5 @@ export interface IVizRenderedPayload {
15
15
  * @param callback
16
16
  */
17
17
  export declare function onVizRendered(instance: VizInstance, callback: (data: unknown) => void): () => void;
18
+ export declare function notifyPanelLoaded(instance: VizInstance, data: unknown): void;
19
+ export declare function onPanelLoaded(instance: VizInstance, callback: (data: unknown) => void): () => void;