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 }