From 776e8d8e1876cce64bb79d64c83cbc0601b9808c Mon Sep 17 00:00:00 2001 From: Gustavo Antunes <17601467+gantunesr@users.noreply.github.com> Date: Mon, 20 Feb 2023 16:12:52 -0300 Subject: [PATCH 1/2] Add missings modules to index --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index b92025a04..5fcffaa5a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -12,3 +12,6 @@ export * from './number'; export * from './opaque'; export * from './time'; export * from './versions'; +export * from './keyring'; +export * from './transaction-types'; +export * from './encryption-types'; From fb6787f210c2738c3b3766f476f4a290f300c944 Mon Sep 17 00:00:00 2001 From: Gustavo Antunes <17601467+gantunesr@users.noreply.github.com> Date: Mon, 20 Feb 2023 16:16:27 -0300 Subject: [PATCH 2/2] Sort alphabetically --- src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 5fcffaa5a..094c46690 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,14 +4,14 @@ export * from './bytes'; export * from './checksum'; export * from './coercers'; export * from './collections'; +export * from './encryption-types'; export * from './hex'; export * from './json'; +export * from './keyring'; export * from './logging'; export * from './misc'; export * from './number'; export * from './opaque'; export * from './time'; -export * from './versions'; -export * from './keyring'; export * from './transaction-types'; -export * from './encryption-types'; +export * from './versions';