Files
prod-wag-backend-automate-s…/web_services/web-controllers/validations/mutual/menu/menu.tsx
2025-05-13 18:45:23 +03:00

20 lines
370 B
TypeScript

interface ClientMenuProps {
siteUrls: string[];
lang?: string;
activePage?: string;
}
interface UserSelection {
userType: string;
selected: any;
}
interface DynamicPage {
header: Record<string, any>;
menu: Record<string, any>;
content: Record<string, any>;
footer: Record<string, any>;
}
export type { ClientMenuProps, UserSelection, DynamicPage };