Files
2026-09-08 20:28:54 +08:00

7 lines
111 B
TypeScript

declare const hex: {
encode(bytes: number[]): string;
decode(str: string): number[];
};
export = hex;