Added some layers
This commit is contained in:
12
src/app/models/toolbarItem.ts
Normal file
12
src/app/models/toolbarItem.ts
Normal file
@ -0,0 +1,12 @@
|
||||
export interface ToolbarItem {
|
||||
name: string;
|
||||
icon?: string;
|
||||
hidden?: boolean;
|
||||
toggle?: boolean;
|
||||
individualToggle?: boolean;
|
||||
click?: () => void;
|
||||
enabled?: boolean;
|
||||
onEnabled?: () => void;
|
||||
onDisabled?: () => void;
|
||||
subMenu?: ToolbarItem[];
|
||||
}
|
Reference in New Issue
Block a user