/** * mixin cc.Codec.Base64 */ export declare class Base64 { static name_: string; /** *
* cc.Codec.Base64.decode(input[, unicode=false]) -> String (http://en.wikipedia.org/wiki/Base64). *
* @function * @param {String} input The base64 encoded string to decode * @return {String} Decodes a base64 encoded String * @example * //decode string * cc.Codec.Base64.decode("U29tZSBTdHJpbmc="); // => "Some String" */ static decode(input: string): string; /** *
* Converts an input string encoded in base64 to an array of integers whose
* values represent the decoded string's characters' bytes.
*