6 lines
287 B
TypeScript
6 lines
287 B
TypeScript
export { default } from "./module";
|
|
export * from "./module";
|
|
export * from "./api/admin";
|
|
export { default as AdminPage } from "./features/admin/AdminPage";
|
|
export type { PlatformWebModule, PlatformNavItem, PlatformRouteContribution, PlatformRouteContext } from "@govoplan/core-webui";
|