nostr-tools

2.20.02.21.0
lib/types/utils.d.ts
~lib/types/utils.d.tsModified
+1−1
Index: package/lib/types/utils.d.ts
===================================================================
--- package/lib/types/utils.d.ts
+++ package/lib/types/utils.d.ts
@@ -1,8 +1,8 @@
 import type { Event } from './core.ts';
 export declare const utf8Decoder: TextDecoder;
 export declare const utf8Encoder: TextEncoder;
-export { bytesToHex, hexToBytes } from '@noble/hashes/utils';
+export { bytesToHex, hexToBytes } from '@noble/hashes/utils.js';
 export declare function normalizeURL(url: string): string;
 export declare function insertEventIntoDescendingList(sortedArray: Event[], event: Event): Event[];
 export declare function insertEventIntoAscendingList(sortedArray: Event[], event: Event): Event[];
 export declare function binarySearch<T>(arr: T[], compare: (b: T) => number): [number, boolean];