@snappify/integration
v1.0.1
Published
<a href="https://snappify.com/"><img src="https://user-images.githubusercontent.com/4418879/114391549-ec320480-9b97-11eb-8620-3c7afe117878.png"/></a>
Downloads
11
Readme
Installation
With NPM
npm i @snappify/integration
With yarn
yarn add @snappify/integration
Usage
Be aware that we restrict the integration of snappify by platforms at the moment. Are you interested? Hit us up at [email protected]
import { openSnappify } from '@snappify/integration';
async function() {
try {
const blob = await openSnappify();
// do something with the blob, e.g. create an object url to show it in an img tag:
// URL.createObjectURL(blob);
} catch (error) {
// error handling
}
}