import { NgxMoveableComponent } from "ngx-moveable"; import { Component } from "@angular/core"; @Component({ selector: "ngx-app", templateUrl: "./App.component.html" }) export default class NgxAppComponent { onScaleStart(e) { e.setMinScaleSize([100, 100]); e.setMaxScaleSize([500, 500]); } onRender(e) { e.target.style.cssText += e.cssText; } }