// Type definitions for base64-js 1.2 // Project: https://github.com/beatgammit/base64-js // Definitions by: Peter Safranek // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped export function byteLength(encoded: string): number; export function toByteArray(encoded: string): Uint8Array; export function fromByteArray(bytes: Uint8Array): string;