prod-wag-backend-automate-s.../web_services/web-controllers/validations/mutual/menu/menu.tsx

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 };