20 lines
370 B
TypeScript
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 };
|