mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
389 B
TypeScript
9 lines
389 B
TypeScript
// Type definitions for base64-js 1.2
|
|
// Project: https://github.com/beatgammit/base64-js
|
|
// Definitions by: Peter Safranek <https://github.com/pe8ter>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function byteLength(encoded: string): number;
|
|
export function toByteArray(encoded: string): Uint8Array;
|
|
export function fromByteArray(bytes: Uint8Array): string;
|