From 4f11731ed84741ae98e7ea81d142cb13450d4e82 Mon Sep 17 00:00:00 2001 From: dapplion Date: Mon, 30 Nov 2020 23:49:39 +0000 Subject: [PATCH] Remove foreign property breaking types --- src/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 4802e66..2f870e3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -57,9 +57,6 @@ export declare class SecretKey implements ISecretKey { } export declare class PublicKey implements IPublicKey { - // Virtual property so PublicKey type != Signature type - private isPublicKey: true; - static fromBytes(bytes: Uint8Array): PublicKey; static fromHex(hex: string): PublicKey; static aggregate(publicKeys: PublicKey[]): PublicKey;