/** * btoa 方法兼容,解决小程序不支持 btoa 的问题 * @param str * @returns */ export declare const btoaPolyfill: (str: string) => string; /** * atob 方法兼容,解决小程序不支持 atob 的问题 * @param str * @returns */ export declare const atobPolyfill: (str: string) => string;