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

24 lines
386 B
JavaScript
Executable File

// @ts-check
import IEntity from "./IEntity"
export default class PathSymbolEntity extends IEntity {
static attributes = {
value: String,
}
constructor(options = {}) {
super(options)
/** @type {String} */ this.value
}
valueOf() {
return this.value
}
toString() {
return this.value
}
}