From bb642f1f1b09780308283065234669d3993195dc Mon Sep 17 00:00:00 2001 From: achingbrain Date: Tue, 12 May 2026 13:18:19 +0300 Subject: [PATCH] fix: export registry as interface instance Ensures the doc generation assigns the correct type to the exported variable. --- src/registry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registry.ts b/src/registry.ts index de211924..514c67c2 100644 --- a/src/registry.ts +++ b/src/registry.ts @@ -106,7 +106,7 @@ class Registry implements RegistryInterface { } } -export const registry = new Registry() +export const registry: RegistryInterface = new Registry() const codecs: ProtocolCodec[] = [{ code: CODE_IP4,