Files
ueblueprint/js/entity/UnknownKeysEntity.js
2023-04-09 18:25:46 +02:00

22 lines
420 B
JavaScript

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