mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 08:34:46 +08:00
15 lines
355 B
JavaScript
15 lines
355 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
|
|
}
|
|
}
|