@regulaforensics/vp-frontend-face-components 7.2.1750-nightly → 7.2.1752-rc

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.
package/dist/index.d.ts CHANGED
@@ -230,43 +230,8 @@ export { }
230
230
 
231
231
 
232
232
  declare global {
233
- const FACE_WASM_S3_PATH: string;
234
- const FACE_API: string;
235
-
236
- namespace React.JSX {
237
- interface IntrinsicElements {
238
- 'face-liveness': React.DetailedHTMLProps<
239
- IFaceLiveness & React.HTMLAttributes<FaceLivenessWebComponent>,
240
- FaceLivenessWebComponent
241
- >;
242
- 'face-capture': React.DetailedHTMLProps<
243
- IFaceDetection & React.HTMLAttributes<FaceDetectionWebComponent>,
244
- FaceDetectionWebComponent
245
- >;
246
- 'fullscreen-container': React.DetailedHTMLProps<
247
- React.HTMLAttributes<FullScreenContainer>,
248
- FullScreenContainer
249
- >;
250
- }
251
- }
252
-
253
233
  interface HTMLElementEventMap {
254
234
  'face-liveness': CustomEvent<FaceLivenessDetailType>;
255
235
  'face-capture': CustomEvent<FaceCaptureDetailType>;
256
236
  }
257
237
  }
258
-
259
- declare global {
260
- const VERSION: string;
261
- const ENV: string;
262
- }
263
-
264
- declare module 'react' {
265
- interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
266
- part?: string;
267
- }
268
-
269
- interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
270
- part?: string;
271
- }
272
- }