hex.d.ts 111 B

1234567
  1. declare const hex: {
  2. encode(bytes: number[]): string;
  3. decode(str: string): number[];
  4. };
  5. export = hex;