Update Identifier type to include symbol

- Modified `Identifier` type in `src/types/Identifier.ts` from `string` to `string | symbol`
This commit is contained in:
2024-08-22 20:31:57 +02:00
committed by Max P.
parent 9a4fdecaac
commit c5ea21356c

View File

@@ -8,4 +8,4 @@
* I.e. a class `ClassA` that implements the interface `IClassA` and is
* registered as a dependent class is registered under the interface name `IClassA`.
*/
export type Identifier = string;
export type Identifier = string | symbol;