From 203122ee104a1cbb0771042aa23e37bcaa7ad025 Mon Sep 17 00:00:00 2001 From: Cayman Date: Sun, 29 Nov 2020 12:54:33 -0600 Subject: [PATCH] Export types --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 4de9153..bcf1267 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,6 +3,8 @@ import {bls as blsHerumi} from "./herumi"; export type Implementation = "herumi" | "blst-native"; +export * from "./interface"; + // TODO: Use a Proxy for example to throw an error if it's not initialized yet export const bls: IBls = {} as IBls;