Files
2026-08-11 17:41:36 +08:00

7 lines
111 B
TypeScript

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