Files
ueblueprint/js/entity/UnknownKeysEntity.js
2023-05-03 21:14:01 +02:00

22 lines
419 B
JavaScript

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