Files
ueblueprint/js/entity/InvariantTextEntity.js
2022-10-09 11:43:28 +02:00

15 lines
287 B
JavaScript

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