Added some layers

This commit is contained in:
2019-08-23 16:27:45 -04:00
parent a019278d38
commit 110c841d9d
7 changed files with 74 additions and 37 deletions

View 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[];
}