intentful
Version:
Create Custom Skills with less headache
27 lines (26 loc) • 827 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AVGGroup = void 0;
const item_1 = require("./item");
class AVGGroup extends item_1.AVGItem {
constructor(props) {
super('group', props);
}
commandSpecificModel() {
return {
clipPath: this.props.clipPath,
data: this.props.data,
items: this.props.items,
opacity: this.props.opacity,
transform: this.props.transform,
rotation: this.props.rotation,
pivotX: this.props.pivotX,
pivotY: this.props.pivotY,
scaleX: this.props.scaleX,
scaleY: this.props.scaleY,
translateX: this.props.translateX,
translateY: this.props.translateY
};
}
}
exports.AVGGroup = AVGGroup;