mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
15 lines
360 B
JavaScript
15 lines
360 B
JavaScript
import IEntity from "./IEntity"
|
|
import TypeInitialization from "./TypeInitialization"
|
|
|
|
export default class UnknownKeysEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
lookbehind: new TypeInitialization(String, false, "", false, true)
|
|
}
|
|
|
|
constructor(values = {}) {
|
|
super(values)
|
|
/** @type {String} */ this.lookbehind
|
|
}
|
|
}
|