Files
ueblueprint/js/entity/UnknownKeysEntity.js
2023-01-04 15:53:38 +01:00

23 lines
416 B
JavaScript

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