7 lines
350 B
TypeScript
7 lines
350 B
TypeScript
export { default } from "./module";
|
|
export * from "./module";
|
|
export { default as DashboardPage } from "./features/dashboard/DashboardPage";
|
|
export { default as InstalledModulesWidget } from "./features/dashboard/widgets/InstalledModulesWidget";
|
|
export type { DashboardWidgetContribution, DashboardWidgetsUiCapability } from "@govoplan/core-webui";
|
|
|