Link icon fixing, name refactoring

This commit is contained in:
barsdeveloper
2022-11-21 11:45:43 +01:00
parent 401ce75fdc
commit a7468f4cf0
37 changed files with 239 additions and 151 deletions

13
js/entity/SymbolEntity.js Normal file
View File

@@ -0,0 +1,13 @@
import IEntity from "./IEntity"
export default class SymbolEntity extends IEntity {
static attributes = {
value: String
}
constructor(values) {
super(values)
/** @type {String} */ this.value
}
}