From c5c278be786d242e5934b2990a879a4aa2d535eb Mon Sep 17 00:00:00 2001 From: Sean Reece Date: Mon, 18 Nov 2024 13:09:29 -0500 Subject: [PATCH] Add __id back to interface --- src/objectid.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/objectid.ts b/src/objectid.ts index 4a262838..f2283bbe 100644 --- a/src/objectid.ts +++ b/src/objectid.ts @@ -13,6 +13,7 @@ const __idCache = new WeakMap(); // TODO convert this to #__id private field whe /** @public */ export interface ObjectIdLike { id: string | Uint8Array; + __id?: string; toHexString(): string; }