Files
2026-07-27 14:07:26 +08:00

7 lines
111 B
TypeScript

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