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;