mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-27 06:22:55 +08:00
11 lines
379 B
TypeScript
11 lines
379 B
TypeScript
// Type definitions for base64-js v1.1.2
|
|
// Project: https://github.com/beatgammit/base64-js
|
|
// Definitions by: Peter Safranek <https://github.com/pe8ter>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module 'base64-js' {
|
|
|
|
export function toByteArray(encoded: string): Uint8Array;
|
|
export function fromByteArray(bytes: Uint8Array): string;
|
|
}
|