Export constants consistently

This commit is contained in:
dapplion 2020-11-28 19:14:06 +00:00
parent bd17160713
commit 9194769d62
2 changed files with 2 additions and 1 deletions

View File

@ -2,8 +2,8 @@ import {PrivateKey} from "./privateKey";
import {PublicKey} from "./publicKey";
import {Signature} from "./signature";
import {IBls} from "../interface";
export * from "../constants";
import {functionalInterfaceFactory} from "../functional";
export * from "../constants";
export {PrivateKey, PublicKey, Signature};

View File

@ -4,6 +4,7 @@ import {Signature} from "./signature";
import {init, destroy} from "./context";
import {IBls} from "../interface";
import {functionalInterfaceFactory} from "../functional";
export * from "../constants";
export {PrivateKey, PublicKey, Signature, init, destroy};