8 lines
481 B
TypeScript
8 lines
481 B
TypeScript
export { default } from "./module";
|
|
export * from "./module";
|
|
export * from "./api/mail";
|
|
export { MailProfilePolicyEditor, MailProfileScopeManager } from "./features/mail/MailProfileManagement";
|
|
export type { MailProfileTargetOption } from "./features/mail/MailProfileManagement";
|
|
export type { PlatformWebModule, PlatformNavItem, PlatformRouteContribution, PlatformRouteContext } from "@govoplan/core-webui";
|
|
export { default as MailboxPage } from "./features/mail/MailboxPage";
|