UNPKG

@aurigma/design-atoms-model

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

20 lines (19 loc) 744 B
import { EventObject } from "../../EventObject"; export declare class GroupItemPermissions { propertyChanged: EventObject<unknown>; allowReplaceContentConstraint: boolean; private _allowReplaceContent; get allowReplaceContent(): boolean; set allowReplaceContent(value: boolean); allowUngroupContraint: boolean; private _allowUngroup; get allowUngroup(): boolean; set allowUngroup(value: boolean); allowSelectNestedItemsContraint: boolean; private _allowSelectNestedItems; get allowSelectNestedItems(): boolean; set allowSelectNestedItems(value: boolean); getSimplifiedObject(): Object; clone(): GroupItemPermissions; equals(p: GroupItemPermissions): boolean; }