Files
ueblueprint/js/entity/LocalizedTextEntity.js
2022-03-30 21:59:41 +02:00

21 lines
455 B
JavaScript
Executable File

// @ts-check
import IEntity from "./IEntity"
export default class LocalizedTextEntity extends IEntity {
static lookbehind = "NSLOCTEXT"
static attributes = {
namespace: String,
key: String,
value: String,
}
constructor(options = {}) {
super(options)
/** @type {String} */ this.namespace
/** @type {String} */ this.key
/** @type {String} */ this.value
}
}