Skip to content

Commit ddf509e

Browse files
committed
Export TabEvent correctly
- Was exporting it incorrectly, causing a breaking change. This way it appears correctly as "deprecated" instead of breaking
1 parent f244253 commit ddf509e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/dashboard-core-plugins/src/events

packages/dashboard-core-plugins/src/events/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type TabEvent as DashboardTabEvent } from '@deephaven/dashboard';
1+
import { TabEvent as DashboardTabEvent } from '@deephaven/dashboard';
22

33
export { default as ChartEvent } from './ChartEvent';
44
export { default as ConsoleEvent } from './ConsoleEvent';
@@ -11,4 +11,4 @@ export { default as PandasEvent } from './PandasEvent';
1111
/**
1212
* @deprecated Use TabEvent from @deephaven/dashboard
1313
*/
14-
export type TabEvent = typeof DashboardTabEvent;
14+
export const TabEvent = DashboardTabEvent;

0 commit comments

Comments
 (0)