updated docs
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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 };
|
||||
Reference in New Issue
Block a user