fix: export encoder/decoder

This commit is contained in:
fryorcraken.eth 2022-09-27 23:31:09 +10:00
parent 4f8118eb5f
commit a11f65f1b7
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -1,3 +1,4 @@
import { RLNDecoder, RLNEncoder } from "./encoder.js";
import type { Proof, RLNInstance } from "./rln.js";
import { MembershipKey } from "./rln.js";
@ -10,4 +11,4 @@ export async function create(): Promise<RLNInstance> {
return await rlnModule.create();
}
export { RLNInstance, MembershipKey, Proof };
export { RLNInstance, MembershipKey, Proof, RLNEncoder, RLNDecoder };