Files
ueblueprint/cypress/fixtures/Entity5.js
barsdeveloper fd991b94b3 Various improvements (#13)
* Union lookbehind

* Fix quoted inline array
2023-09-02 14:08:29 +02:00

19 lines
342 B
JavaScript

import EntityF from "./EntityF.js"
import IEntity from "../../js/entity/IEntity.js"
export default class Entity5 extends IEntity {
static attributes = {
key1: {
type: String,
},
key2: {
type: EntityF,
},
}
static {
this.cleanupAttributes(this.attributes)
}
}