UNPKG

@opra/common

Version:
21 lines (20 loc) 650 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ObjectType = void 0; const tslib_1 = require("tslib"); const complex_type_js_1 = require("../complex-type.js"); let ObjectType = class ObjectType { constructor(properties) { if (properties) Object.assign(this, properties); } }; exports.ObjectType = ObjectType; exports.ObjectType = ObjectType = tslib_1.__decorate([ (0, complex_type_js_1.ComplexType)({ name: 'object', description: 'A non modelled object', additionalFields: true, }), tslib_1.__metadata("design:paramtypes", [Object]) ], ObjectType);