UNPKG
@idscan/idvc2
Version:
latest (3.9.2)
3.9.2
3.9.1
3.9.0
3.8.0
3.7.0
3.6.0
3.5.0
3.4.1
3.4.0
3.3.0
3.2.0
3.1.1
3.1.0
3.0.0
2.15.0
2.14.0
2.13.0
2.12.2
2.12.1
2.12.0
2.11.1
2.11.0
2.10.4
2.10.3
2.10.2
2.10.1
2.10.0
2.9.0
2.8.11
2.8.10
2.8.9
2.8.7
2.8.6
2.8.5
2.8.4
2.8.3
2.8.2
2.8.1
2.8.0
2.7.8
2.7.7
2.7.6
2.7.5
2.7.4
2.7.3
2.7.2
2.7.1
2.7.0
2.6.2
2.6.1
2.6.0
2.5.12
2.5.11
2.5.10
2.5.9
2.5.8
2.5.7
2.5.6
2.5.5
2.5.4
2.5.3
2.5.2
2.5.1
2.5.0
2.4.17
2.4.16
2.4.15
2.4.14
2.4.13
2.4.12
2.4.11
2.4.10
2.4.9
2.4.8
2.4.7
2.4.6
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.3
2.3.2
2.3.1
2.3.0
2.2.3
2.2.2
2.2.1
2.2.0
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
component for the capturing documents
@idscan/idvc2
/
dist
/
js
/
environment
/
loopResult.ts
15 lines
(13 loc)
•
260 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
ILoopResult
{
status:
boolean
,
cancel:
boolean
,
touch:
boolean
,
image:
ImageData
|
null
, }
const defaultLoopResult:
ILoopResult
=
{
status:
false
,
cancel:
false
,
touch:
false
,
image:
null
, }
;
export
default
defaultLoopResult;