2023-07-20 19:00:23 +08:00
|
|
|
"use strict";
|
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
|
exports.Size = void 0;
|
|
|
|
|
class Size {
|
|
|
|
|
constructor(width = 0, height = 0) {
|
|
|
|
|
this.width = width || 0;
|
|
|
|
|
this.height = height || 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
exports.Size = Size;
|