react-native-macos/flow-typed/npm/base64-js_v1.x.x.js

13 строки
232 B
JavaScript

/**
* @flow strict
* @format
*/
declare module 'base64-js' {
declare module.exports: {
byteLength: string => number,
fromByteArray: (Uint8Array | Array<number>) => string,
toByteArray: string => Uint8Array,
};
}