base64.d.ts 117 B

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