UNPKG

@opra/common

Version:
18 lines (17 loc) 481 B
import { __decorate, __metadata } from "tslib"; import { ComplexType } from '../complex-type.js'; let ObjectType = class ObjectType { constructor(properties) { if (properties) Object.assign(this, properties); } }; ObjectType = __decorate([ ComplexType({ name: 'object', description: 'A non modelled object', additionalFields: true, }), __metadata("design:paramtypes", [Object]) ], ObjectType); export { ObjectType };