10 lines
342 B
TypeScript
10 lines
342 B
TypeScript
export { default } from "./module";
|
|
export * from "./module";
|
|
export * from "./api/tenancy";
|
|
export { default as TenantsPanel } from "./features/admin/TenantsPanel";
|
|
export { default as TenantSettingsPanel } from "./features/admin/TenantSettingsPanel";
|
|
export type {
|
|
PlatformWebModule,
|
|
PlatformRouteContext
|
|
} from "@govoplan/core-webui";
|