Moving node and pins information to Configuration

This commit is contained in:
barsdeveloper
2023-01-06 18:23:56 +01:00
parent af44de4539
commit a3e0d6be2b
29 changed files with 1548 additions and 1100 deletions

View File

@@ -28,9 +28,11 @@ export default class SerializerFactory {
/**
* @template {AnyValue} T
* @param {AnyValueConstructor<T>} entity
* @param {new () => T} entity
* @returns {ISerializer<T>}
*/
static getSerializer(entity) {
// @ts-expect-error
return SerializerFactory.#serializers.get(entity)
}
}