mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
414 B
TypeScript
13 lines
414 B
TypeScript
// Type definitions for btoa 1.2
|
|
// Project: https://git.coolaj86.com/coolaj86/btoa.js.git
|
|
// Definitions by: John Wright <https://github.com/johngeorgewright>
|
|
// Alex Brick <https://github.com/bricka>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
/// <reference types="node" />
|
|
|
|
declare function btoa(str: string | Buffer): string;
|
|
|
|
export = btoa;
|