Merge pull request #40 from ChainSafe/cayman/export-types

Export types
This commit is contained in:
Cayman 2020-11-29 11:59:23 -07:00 committed by GitHub
commit 138b6de063
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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;