mirror of
https://gitee.com/onvia/ccc-tnt-psd2ui
synced 2026-02-12 19:35:42 +00:00
11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
|
|
"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;
|