@devlander/utils
Version:
Comprehensive JavaScript and TypeScript utilities for seamless development. Includes object manipulation, data validation, and more.
7 lines (6 loc) • 317 B
TypeScript
/**
* Converts a Blob object to a Base64-encoded string using a Promise in React Native.
* @param blob - The Blob object to convert.
* @returns A Promise that resolves with the Base64-encoded string or rejects with an error.
*/
export declare function convertBlobToBase64NativeAsync(blob: Blob): Promise<string>;