Files
ueblueprint/js/entity/UnknownKeysEntity.js
barsdeveloper 8c30118a13 Various fixes
2023-03-31 22:19:13 +02:00

22 lines
399 B
JavaScript

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