UNPKG

@vctrl/hooks

Version:

vctrl/hooks is a React hooks package designed to simplify 3D model loading and management within React applications. It's part of the vectreal-core ecosystem and is primarily used in the vctrl/viewer React component and the official website application.

10 lines (9 loc) 224 B
/** * Converts a data URI to a Blob. * * @param {string} dataURI - The data URI to convert. * * @returns {Blob} The Blob object. */ declare const dataURItoBlob: (dataURI: string) => Blob; export default dataURItoBlob;