From 462b6e5ccfac283627f978222f43a9bf80475ec7 Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" Date: Tue, 27 Sep 2022 22:47:55 +1000 Subject: [PATCH] fix: export MembershipKey class --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 6f65ab4..e427811 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,5 @@ -import type { MembershipKey, Proof, RLNInstance } from "./rln.js"; +import type { Proof, RLNInstance } from "./rln.js"; +import { MembershipKey } from "./rln.js"; // reexport the create function, dynamically imported from rln.ts export async function create(): Promise {