Files
ueblueprint/js/entity/PathSymbolEntity.js
2022-11-21 11:45:43 +01:00

22 lines
363 B
JavaScript
Executable File

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