Files
ueblueprint/js/entity/InvariantTextEntity.js
2022-04-18 00:11:31 +02:00

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
}
}