@devtable/dashboard 13.9.0 → 13.10.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.
@@ -0,0 +1,6 @@
1
+ import { ITriggerConfigProps, ITriggerSchema } from '../../../../../types/plugin';
2
+ export declare const ClickStats: ITriggerSchema;
3
+ export interface IClickStatsConfig {
4
+ foo: '';
5
+ }
6
+ export declare function ClickStatsSettings(props: ITriggerConfigProps): import('./react/jsx-runtime').JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './click-stats';
@@ -1,4 +1,4 @@
1
1
  import { VizViewProps } from '../../../../types/plugin';
2
- export declare const VizStats: (({ context }: VizViewProps) => import('./react/jsx-runtime').JSX.Element) & {
2
+ export declare const VizStats: (({ context, instance }: VizViewProps) => import('./react/jsx-runtime').JSX.Element) & {
3
3
  displayName: string;
4
4
  };