UNPKG
react-native-file-stream
Version:
latest (1.0.4)
1.0.4
1.0.4-beta2
1.0.4-beta
1.0.3
1.0.3-alpha.1
1.0.3-alpha.0
1.0.3-alpha
1.0.2
1.0.1
1.0.0
operate file stream in react native
github.com/wanxianliang/react-native-file-stream
react-native-file-stream
/
types
/
DataConvertUtil.d.ts
7 lines
(6 loc)
•
299 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
class
DataConvertUtil
{
static
base64ToUnit8Array
(
base64String
:
string
):
Uint8Array
;
static
unit8ArrayToBase64
(
unit8ArrayData
:
Uint8Array
):
string
;
static
base64ToArryBuffer
(
base64String
:
string
):
ArrayBuffer
;
static
arryBufferToBase64
(
buffer
:
ArrayBuffer
):
string
; }