react-native-theoplayer
Version:
A THEOplayer video component for react-native.
21 lines • 872 B
TypeScript
export declare function fromObjectToString(obj: {
[key: string]: any;
}): string;
export declare function fromObjectToBase64String(obj: {
[key: string]: any;
}): string;
export declare function fromObjectToUint8Array(obj: {
[key: string]: any;
}): Uint8Array;
export declare function fromStringToBase64String(str: string): string;
export declare function fromStringToUint8Array(str: string): Uint8Array;
export declare function fromStringToObject(str: string): {
[key: string]: any;
};
export declare function fromBase64StringToUint8Array(str: string): Uint8Array;
export declare function fromUint8ArrayToBase64String(array: Uint8Array): string;
export declare function fromUint8ArrayToString(array: Uint8Array): string;
export declare function fromUint8ArrayToObject(array: Uint8Array): {
[key: string]: any;
};
//# sourceMappingURL=TypeUtils.d.ts.map