Files
ueblueprint/js/entity/LocalizedTextEntity.js
2022-03-09 23:11:40 +01:00

16 lines
347 B
JavaScript
Executable File

import IEntity from "./IEntity"
export default class LocalizedTextEntity extends IEntity {
static lookbehind = "NSLOCTEXT"
static attributes = {
namespace: String,
key: String,
value: String
}
/** @type {String} */ namespace
/** @type {String} */ key
/** @type {String} */ value
}