@opra/common
Version:
Opra common package
18 lines (17 loc) • 481 B
JavaScript
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 };