From c5ea21356c2e9912db85f72fa2cbf45bd64a2e59 Mon Sep 17 00:00:00 2001 From: Max P Date: Thu, 22 Aug 2024 20:31:57 +0200 Subject: [PATCH] Update Identifier type to include symbol - Modified `Identifier` type in `src/types/Identifier.ts` from `string` to `string | symbol` --- src/types/Identifier.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/Identifier.ts b/src/types/Identifier.ts index 781f704..6492bf1 100644 --- a/src/types/Identifier.ts +++ b/src/types/Identifier.ts @@ -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;