From bf2b457f487191cbea2caeeec9b33ab597bfdc3b Mon Sep 17 00:00:00 2001 From: dapplion <35266934+dapplion@users.noreply.github.com> Date: Mon, 5 Apr 2021 20:27:17 +0200 Subject: [PATCH] Fix type issue with class type declaration --- src/interface.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/interface.ts b/src/interface.ts index 069c88d..05c752d 100644 --- a/src/interface.ts +++ b/src/interface.ts @@ -1,8 +1,8 @@ export interface IBls { implementation: Implementation; - SecretKey: typeof SecretKey; - PublicKey: typeof PublicKey; - Signature: typeof Signature; + SecretKey: Omit; + PublicKey: Omit; + Signature: Omit; sign(secretKey: Uint8Array, message: Uint8Array): Uint8Array; aggregatePublicKeys(publicKeys: Uint8Array[]): Uint8Array;