0.2.2 • Published 6 months ago

@types/react-native-base64 v0.2.2

Weekly downloads
2,211
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/react-native-base64

Summary

This package contains type definitions for react-native-base64 (https://github.com/eranbo/react-native-base64#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-base64.

index.d.ts

// Type definitions for react-native-base64 0.2
// Project: https://github.com/eranbo/react-native-base64#readme
// Definitions by: seongjoojin <https://github.com/seongjoojin>,
//                 markyao6275 <https://github.com/markyao6275>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

interface Base64 {
    encode: (input: string) => string;
    decode: (input: string) => string;
    encodeFromByteArray: (byteArray: Uint8Array) => string;
}

declare const base64: Base64;
export = base64;

Additional Details

  • Last updated: Mon, 20 Sep 2021 22:31:22 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by seongjoojin, and markyao6275.