Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
475 B

import { Layout } from '../models/layout';
export declare class AddNavigationElement {
payload: Layout.NavigationElement | Layout.NavigationElement[];
static readonly type = "[Layout] Add Navigation Element";
constructor(payload: Layout.NavigationElement | Layout.NavigationElement[]);
}
export declare class RemoveNavigationElementByName {
name: string;
static readonly type = "[Layout] Remove Navigation ElementByName";
constructor(name: string);
}