@idscan/idvc2 2.0.2 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,16 +45,6 @@
45
45
  * =============================================================================
46
46
  */
47
47
 
48
- /**
49
- * @license
50
- * Copyright 2018 Google LLC
51
- *
52
- * Use of this source code is governed by an MIT-style
53
- * license that can be found in the LICENSE file or at
54
- * https://opensource.org/licenses/MIT.
55
- * =============================================================================
56
- */
57
-
58
48
  /**
59
49
  * @license
60
50
  * Copyright 2018 Google LLC. All Rights Reserved.
@@ -72,16 +62,6 @@
72
62
  * =============================================================================
73
63
  */
74
64
 
75
- /**
76
- * @license
77
- * Copyright 2019 Google LLC
78
- *
79
- * Use of this source code is governed by an MIT-style
80
- * license that can be found in the LICENSE file or at
81
- * https://opensource.org/licenses/MIT.
82
- * =============================================================================
83
- */
84
-
85
65
  /**
86
66
  * @license
87
67
  * Copyright 2019 Google LLC. All Rights Reserved.
@@ -134,16 +114,6 @@
134
114
  * =============================================================================
135
115
  */
136
116
 
137
- /**
138
- * @license
139
- * Copyright 2020 Google LLC
140
- *
141
- * Use of this source code is governed by an MIT-style
142
- * license that can be found in the LICENSE file or at
143
- * https://opensource.org/licenses/MIT.
144
- * =============================================================================
145
- */
146
-
147
117
  /**
148
118
  * @license
149
119
  * Copyright 2020 Google LLC. All Rights Reserved.
@@ -0,0 +1,4 @@
1
+ export interface IPredictLabelData {
2
+ img: ImageData,
3
+ blurConfidence: number,
4
+ }
@@ -0,0 +1,9 @@
1
+ import IDVC from './idvc';
2
+ export {};
3
+
4
+ declare global {
5
+ interface Window {
6
+ BlurDetector: any;
7
+ IDVC: typeof IDVC,
8
+ }
9
+ }