UNPKG

@projectstorm/react-canvas-core

Version:
18 lines 451 B
import { LayerModel } from '../layer/LayerModel'; export class SelectionLayerModel extends LayerModel { constructor() { super({ transformed: false, isSvg: false, type: 'selection' }); } setBox(rect) { this.box = rect; } getChildModelFactoryBank() { // is not used as it doesnt serialize return null; } } //# sourceMappingURL=SelectionLayerModel.js.map