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.
abp/npm/ng-packs/dist/theme-basic/lib/actions/layout.actions.d.ts

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);
}