UNPKG

414 BTypeScriptView Raw
1// Type definitions for btoa 1.2
2// Project: https://git.coolaj86.com/coolaj86/btoa.js.git
3// Definitions by: John Wright <https://github.com/johngeorgewright>
4// Alex Brick <https://github.com/bricka>
5// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
6// TypeScript Version: 2.8
7
8/// <reference types="node" />
9
10declare function btoa(str: string | Buffer): string;
11
12export = btoa;