mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-10 21:34:42 +08:00
17 lines
301 B
JavaScript
17 lines
301 B
JavaScript
// @ts-check
|
|
|
|
import IEntity from "./IEntity"
|
|
|
|
export default class InvariantTextEntity extends IEntity {
|
|
|
|
static lookbehind = "INVTEXT"
|
|
static attributes = {
|
|
value: String,
|
|
}
|
|
|
|
constructor(options = {}) {
|
|
super(options)
|
|
/** @type {String} */ this.value
|
|
}
|
|
}
|