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