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;