native-libs
v1.0.6
Published
``` import * as NativeLibs from 'native-libs;
Downloads
1
Readme
How to use NativeLibs
import * as NativeLibs from 'native-libs;
const run = () => {
await NativeLibs.init();
// Create QR Code with size 100x100 and quality 50
// Return data image as base64 jpeg
const base64 = NativeLibs.QRGenerator.createQRCode("Hello World", 100, 50);
console.log(base64);
};
run();
