ethers.js/packages/bytes/lib/base64-browser.d.ts

8 lines
336 B
TypeScript
Raw Permalink Normal View History

2022-04-11 17:14:19 -04:00
declare global {
function atob(ascii: string): string;
function btoa(binary: string): string;
}
import type { BytesLike } from "@ethersproject/logger";
export declare function decodeBase64(textData: string): Uint8Array;
export declare function encodeBase64(_data: BytesLike): string;
//# sourceMappingURL=base64-browser.d.ts.map