mirror of https://github.com/abpframework/abp
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.
12 lines
475 B
12 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);
|
|
}
|