PathSymbol => PathSymbolEntity

This commit is contained in:
barsdeveloper
2021-11-23 20:05:36 +01:00
parent ffe50c2be5
commit a224903f35
8 changed files with 773 additions and 746 deletions

View File

@@ -0,0 +1,13 @@
import GeneralSerializer from "./GeneralSerializer"
export default class ToStringSerializer extends GeneralSerializer {
constructor(entityType) {
super(undefined, entityType)
}
write(object) {
let result = object.toString()
return result
}
}