boldsign
Version:
NodeJS client for boldsign
27 lines • 574 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Size = void 0;
class Size {
constructor() {
this['width'] = 0;
this['height'] = 0;
}
static getAttributeTypeMap() {
return Size.attributeTypeMap;
}
}
exports.Size = Size;
Size.discriminator = undefined;
Size.attributeTypeMap = [
{
"name": "width",
"baseName": "width",
"type": "number"
},
{
"name": "height",
"baseName": "height",
"type": "number"
}
];
//# sourceMappingURL=size.js.map