Skip to content

Commit 93b5426

Browse files
committed
headlamp-plugin: Export Activity type for plugins
1 parent 9e66150 commit 93b5426

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

plugins/headlamp-plugin/src/index.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ declare module '@mui/private-theming' {
2020
interface DefaultTheme extends Theme {}
2121
}
2222

23+
import { Activity } from './components/activity/Activity';
2324
import * as CommonComponents from './components/common';
2425
import * as K8s from './lib/k8s';
2526
import * as ApiProxy from './lib/k8s/apiProxy';
@@ -29,10 +30,7 @@ import * as Utils from './lib/util';
2930
import { Headlamp, Plugin } from './plugin/lib';
3031
import { getSupportedLocales, isLocaleSupported, useTranslation } from './plugin/pluginI18n';
3132
import { PluginSettingsDetailsProps } from './plugin/pluginsSlice';
32-
import type {
33-
CallbackActionOptions,
34-
HeadlampEvent,
35-
} from './plugin/registry';
33+
import type { CallbackActionOptions, HeadlampEvent } from './plugin/registry';
3634
import Registry, {
3735
AppLogoProps,
3836
clusterAction,
@@ -131,6 +129,7 @@ export {
131129
registerProjectOverviewSection,
132130
registerClusterStatus,
133131
registerProjectDeleteButton,
132+
Activity,
134133
};
135134

136135
export type {

0 commit comments

Comments
 (0)