Skip to content

Commit b0d634c

Browse files
authored
Merge pull request #160 from Dynamsoft/_dev
remove EnumCapturedResultItemType
2 parents 188da39 + 48db3b0 commit b0d634c

File tree

7 files changed

+0
-8
lines changed

7 files changed

+0
-8
lines changed

hello-world/angular/src/app/video-capture/video-capture.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Component, ElementRef, ViewChild } from '@angular/core';
2-
import { EnumCapturedResultItemType } from 'dynamsoft-core'
32
import { DecodedBarcodesResult } from 'dynamsoft-barcode-reader';
43
import {
54
CameraEnhancer,

hello-world/next/components/VideoCapture/VideoCapture.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"use client"
22

33
import React, { useEffect, useRef } from "react";
4-
import { EnumCapturedResultItemType } from "dynamsoft-core";
54
import { DecodedBarcodesResult } from "dynamsoft-barcode-reader";
65
import {
76
CameraEnhancer,

hello-world/nuxt/components/VideoCapture.client.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ import {
33
onBeforeUnmount,
44
onMounted,
55
ref,
6-
getCurrentInstance,
76
type Ref,
87
} from "vue";
9-
import { EnumCapturedResultItemType } from "dynamsoft-core";
108
import { type DecodedBarcodesResult } from "dynamsoft-barcode-reader";
119
import { CameraEnhancer, CameraView } from "dynamsoft-camera-enhancer";
1210
import {

hello-world/react-hooks/src/components/VideoCapture/VideoCapture.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { CameraEnhancer, CameraView } from 'dynamsoft-camera-enhancer';
33
import { DecodedBarcodesResult } from 'dynamsoft-barcode-reader';
44
import { CaptureVisionRouter, CapturedResultReceiver } from 'dynamsoft-capture-vision-router';
55
import { MultiFrameResultCrossFilter } from "dynamsoft-utility";
6-
import { EnumCapturedResultItemType } from 'dynamsoft-core';
76
import "./VideoCapture.css";
87

98
function VideoRecognizer() {

hello-world/react/src/components/VideoCapture/VideoCapture.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from "react";
2-
import { EnumCapturedResultItemType } from "dynamsoft-core";
32
import { DecodedBarcodesResult } from "dynamsoft-barcode-reader";
43
import {
54
CameraEnhancer,

hello-world/svelte/src/components/VideoCapture.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<script lang="ts">
22
import "../lib/router"; // import side effects. The license, engineResourcePath, so on.
3-
import { EnumCapturedResultItemType } from "dynamsoft-core";
43
import { type DecodedBarcodesResult } from "dynamsoft-barcode-reader";
54
import { CameraEnhancer, CameraView } from "dynamsoft-camera-enhancer";
65
import {

hello-world/vue/src/components/VideoCapture.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<script setup lang="ts">
22
import { onMounted, onUnmounted, ref, type Ref } from "vue";
3-
import { EnumCapturedResultItemType } from "dynamsoft-core";
43
import { MultiFrameResultCrossFilter } from "dynamsoft-utility";
54
import { CameraEnhancer, CameraView } from "dynamsoft-camera-enhancer";
65
import type { DecodedBarcodesResult } from "dynamsoft-barcode-reader";

0 commit comments

Comments
 (0)