admin: prevent duplicate definition error; research why this happened

This commit is contained in:
Richard Moore 2023-04-06 04:33:55 -04:00
parent 8c5973e3a9
commit c764e9a10b

@ -11,13 +11,13 @@ import type { Wordlist } from "../wordlists/index.js";
import type { TestCaseMnemonic, TestCaseMnemonicNode } from "./types.js";
/*
declare global {
class TextDecoder {
decode(data: Uint8Array): string;
}
}
*/
const decoder = new TextDecoder();
function fromHex(hex: string): string {