UNPKG

@aurigma/design-atoms-interfaces

Version:

22 lines (21 loc) 545 B
import { IItemData } from "./IItemData"; /** * A structure containing parameters of groups. * @remarks For details, you can refer to the {@link https://customerscanvas.com/help/designers-manual/design-anatomy/groups.html|Group elements} topic. * @example * ```json * { * "defaultItemsConfig": { * "group": { * "manipulationPermissions": { * "allowMoveHorizontal": false * }, * "width": "100" * } * } * } * ``` * @public */ export interface IGroupItemData extends IItemData { }