src/app/menu-items/menu-items.interfaces.ts
Properties |
onClick |
onClick:
|
Type : function
|
preserveQParams |
preserveQParams:
|
Type : boolean
|
queryParameters |
queryParameters:
|
Type : any
|
text |
text:
|
Type : string
|
value |
value:
|
Type : string
|
export interface NavigationLinkModel {
text: string;
value: string;
preserveQParams?: boolean;
queryParameters: any;
onClick?: (e: MouseEvent) => any;
}
export interface MenuLabelModel {
text: string;
}
export interface MenuButtonModel {
onClick: (e: MouseEvent)=>any,
text: string,
}