ethers.js/utils/base64.d.ts

4 lines
154 B
TypeScript

import { Arrayish } from './bytes';
export declare function decode(textData: string): Uint8Array;
export declare function encode(data: Arrayish): string;