UNPKG
capacitor-plugin-scanbot-barcode-scanner-sdk
Version:
alpha (8.0.1-alpha.1)
latest (8.0.0)
rc (8.0.0-rc.4)
9.0.0-alpha.2
9.0.0-alpha.1
8.0.1-alpha.1
8.0.0
8.0.0-rc.4
8.0.0-rc.3
8.0.0-rc.2
8.0.0-rc.1
7.1.1
7.1.1-rc.2
7.1.1-rc.1
7.1.0
7.1.0-rc.2
7.1.0-rc.1
7.0.0
7.0.0-rc.4
7.0.0-rc.3
7.0.0-rc.2
7.0.0-rc.1
7.0.0-alpha.1
6.1.0
6.1.0-rc.2
6.1.0-rc.1
5.1.0
5.1.0-rc.2
5.1.0-rc.1
4.2.0
4.2.0-rc.2
4.2.0-rc.1
4.2.0-alpha.1
Scanbot Barcode Scanner SDK for Capacitor
scanbot.io/developer/capacitor-barcode-scanner-sdk/
capacitor-plugin-scanbot-barcode-scanner-sdk
/
dist
/
esm
/
customTypes.d.ts
12 lines
(11 loc)
•
231 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
type
Status =
'OK'
|
'CANCELED'
;
/** Compress format */
export
type
CompressFormat =
/** JPEG image format */
'JPEG'
/** PNG image format */
|
'PNG'
; export
interface
ResultWrapper<T> { status: Status; data?: T; }