base64.d.ts 293 B

12345
  1. export declare function utf8Encode(argString: any): string;
  2. export declare function base64Encode(data: any): any;
  3. export declare function base64Decode(data: string): string;
  4. export declare function urlSafeBase64Encode(v: any): any;
  5. export declare function urlSafeBase64Decode(v: any): string;