mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
23 lines
416 B
JavaScript
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
|
|
}
|
|
}
|