DefinitelyTyped/types/btoa/index.d.ts
2019-03-29 11:25:56 -07:00

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;