@cheprasov/qrcode
Version:
The library is for generating QR codes like SVG, HTML5 Canvas, PNG and JPG files, or text.
17 lines (15 loc) • 585 B
JavaScript
// @flow
/*
* This file is part of QR code library
* git: https://github.com/cheprasov/js-qrcode
*
* (C) Alexander Cheprasov <acheprasov84@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
export { default as QRCodeCanvas } from './QRCodeCanvas';
export { default as QRCodeRaw } from './QRCodeRaw';
export { default as QRCodeSVG } from './QRCodeSVG';
export { default as QRCodeText } from './QRCodeText';
export { default as AbstractQRCodeWithImage } from './AbstractQRCodeWithImage';