From 55115954c58e6dfba775bcab987e70e0e561d52f Mon Sep 17 00:00:00 2001 From: yashu Date: Mon, 11 Mar 2024 16:41:50 +0200 Subject: [PATCH 1/2] export codec module from serializable --- src/serializable/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/serializable/index.ts b/src/serializable/index.ts index b4b3a1bd3..9dc34477d 100644 --- a/src/serializable/index.ts +++ b/src/serializable/index.ts @@ -8,3 +8,4 @@ export * from './fxs/common'; export * as pvmSerial from './pvm'; export * from './primitives'; export * from './constants'; +export * from './codec'; From 9c7ce7e0867604c26e392d31ec6e84eb30441995 Mon Sep 17 00:00:00 2001 From: yashu Date: Mon, 11 Mar 2024 18:23:06 +0200 Subject: [PATCH 2/2] feat: codec added as constant in serializable --- src/serializable/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serializable/index.ts b/src/serializable/index.ts index 9dc34477d..d7376931f 100644 --- a/src/serializable/index.ts +++ b/src/serializable/index.ts @@ -8,4 +8,4 @@ export * from './fxs/common'; export * as pvmSerial from './pvm'; export * from './primitives'; export * from './constants'; -export * from './codec'; +export * as codec from './codec';