ts-jsdk
Version:
TypeScript implementation of the Java platform
19 lines • 387 B
JavaScript
export class Dimension {
constructor(_width, _height) {
this._width = _width;
this._height = _height;
}
getWidth() {
return this._width;
}
setWidth(value) {
this._width = value;
}
getHeight() {
return this._height;
}
setHeight(value) {
this._height = value;
}
}
//# sourceMappingURL=Dimension.js.map