Files
ueblueprint/js/entity/UnknownKeysEntity.js
barsdeveloper 9d6b498709 Details fixed
2023-04-01 15:44:03 +02:00

22 lines
417 B
JavaScript

import IEntity from "./IEntity.js"
export default class UnknownKeysEntity extends IEntity {
static attributes = {
lookbehind: {
value: "",
showDefault: false,
ignore: true,
},
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values, true)
/** @type {String} */ this.lookbehind
}
}