forked from mebjas/html5-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
32 lines (31 loc) · 899 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @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 <[email protected]>
*
* The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED
* http://www.denso-wave.com/qrcode/faqpatent-e.html
*/
export {
Html5Qrcode,
Html5QrcodeFullConfig,
Html5QrcodeCameraScanConfig
} from "./html5-qrcode";
export { Html5QrcodeScanner } from "./html5-qrcode-scanner";
export {
Html5QrcodeSupportedFormats,
Html5QrcodeResult,
QrcodeSuccessCallback,
QrcodeErrorCallback
} from "./core";
export { Html5QrcodeScannerState } from "./state-manager";
export { Html5QrcodeScanType } from "./core";
export {
CameraCapabilities,
CameraDevice
} from "./camera/core";