import { AxRectangleShape } from "./axRectangleShape"; export class AxImageShapeTest extends AxRectangleShape{ /** * */ constructor(x:number,y:number,width:number,height:number) { super(x,y,width,height); } }