Files
DefinitelyTyped/types/btoa/index.d.ts
John Wright e1a9b0af73 Add the atob & btoa npm module definitions (#25416)
* feat(types): add the atob btoa npm module definitions

* style(lint): shorten typescript version

* chore(tslint): remove unnecessary rules

* chore(tslint): fix linting errors
2018-05-07 11:49:20 -07:00

8 lines
297 B
TypeScript

// Type definitions for btoa 1.2
// Project: https://git.coolaj86.com/coolaj86/btoa.js
// Definitions by: John Wright <https://github.com/johngeorgewright>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
export default function(str: string): string;