base64.d.ts 392 B

12345678910
  1. import type { BytesLike } from '../types/UtilsTypes.js';
  2. export declare class Base64 {
  3. encode(input: string): string;
  4. encodeIgnoreUtf8(inputBytes: BytesLike): string;
  5. decode(input: string): string;
  6. decodeToByteArray(input: string): number[];
  7. _out2ByteArray(utftext: string): number[];
  8. _utf8_encode(string: string): string;
  9. _utf8_decode(utftext: string): string;
  10. }