DefinitelyTyped/types/react-native-base64/index.d.ts
EvanJin c10f5e1dbe
Add Types for package react-native-base64 (#47127)
Co-authored-by: evan <evanjin@toons.kr>
2020-08-30 04:58:54 -04:00

13 lines
392 B
TypeScript

// Type definitions for react-native-base64 0.1
// Project: https://github.com/eranbo/react-native-base64#readme
// Definitions by: seongjoojin <https://github.com/seongjoojin>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface Base64 {
encode: (input: string) => string;
decode: (input: string) => string;
}
declare const base64: Base64;
export = base64;