7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
declare const hex: {
|
|
encode(bytes: number[]): string;
|
|
decode(str: string): number[];
|
|
};
|
|
|
|
export = hex;
|