From a99b9582dc3c275f7d640387ce9be2d003d6d5c8 Mon Sep 17 00:00:00 2001 From: Vasco Santos Date: Thu, 10 Dec 2020 11:15:05 +0100 Subject: [PATCH] chore: update interface record per libp2p pr feedback --- src/record/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/record/types.ts b/src/record/types.ts index 2ccae83..97212a4 100644 --- a/src/record/types.ts +++ b/src/record/types.ts @@ -15,7 +15,7 @@ export interface Record { */ marshal(): Uint8Array; /** - * erifies if the other provided Record is identical to this one. + * Verifies if the other provided Record is identical to this one. */ - equals(other: any): other is Record + equals(other: unknown): boolean }