forked from mebjas/html5-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
19 lines (18 loc) · 681 Bytes
/
index.ts
File metadata and controls
19 lines (18 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
* @fileoverview - Global export file.
* HTML5 QR code & barcode scanning library.
* - Decode QR Code.
* - Decode different kinds of barcodes.
* - Decode using web cam, smart phone camera or using images on local file
* system.
*
* @author mebjas <minhazav@gmail.com>
*
* The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED
* http://www.denso-wave.com/qrcode/faqpatent-e.html
*/
export { Html5Qrcode } from "./html5-qrcode";
export { Html5QrcodeScanner } from "./html5-qrcode-scanner";
export { Html5QrcodeSupportedFormats } from "./core";
export { Html5QrcodeScannerState } from "./state-manager";
export { Html5QrcodeScanType } from "./core";