1.1.3 • Published 6 months ago

@types/b2a v1.1.3

Weekly downloads
154
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/b2a

Summary

This package contains type definitions for b2a (https://github.com/kaelzhang/b2a#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/b2a.

index.d.ts

// Type definitions for b2a 1.1
// Project: https://github.com/kaelzhang/b2a#readme
// Definitions by: PatPL <https://github.com/PatPL>
//                 Merlinio <https://github.com/Merlinio>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/**
 * Converts base64 string back into original text
 */
declare function atob(base64: string): string;

 /**
  * Converts base64url string back into original text
  */
declare function atobu(base64: string): string;

 /**
  * Converts text into base64 string
  */
declare function btoa(text: string): string;

 /**
  * Converts text into base64url string
  */
declare function btoau(text: string): string;

export {
    atob,
    atobu,
    btoa,
    btoau
};

Additional Details

  • Last updated: Fri, 07 Jan 2022 22:31:35 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by PatPL, and Merlinio.

1.1.1

8 months ago

1.1.3

6 months ago

1.1.2

7 months ago

1.1.0

2 years ago

1.0.0

5 years ago