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