You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: programming/javascript/api-reference/core/basic-structures/captured-result-item.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,15 @@ noTitleIndex: true
12
12
13
13
The `CapturedResultItem` interface provides a common structure for representing different types of captured results. Each specific captured result item type will have its own implementation and additional properties specific to that type.
14
14
15
+
> NOTE:
16
+
>
17
+
> Depending on the functional module that generated the result item, the interface may vary:
> * dynamsoft-document-normalizer: [DetectedQuadResultItem](https://www.dynamsoft.com/document-normalizer/docs/web/programming/javascript/api-reference/interfaces/detected-quad-result-item.html) or [NormalizedImageResultItem](https://www.dynamsoft.com/document-normalizer/docs/web/programming/javascript/api-reference/interfaces/normalized-image-result-item.html)
22
+
> * dynamsoft-code-parser: ParsedResultItem
23
+
15
24
```typescript
16
25
interfaceCapturedResultItem {
17
26
readonly type:EnumCapturedResultItemType;
@@ -26,7 +35,7 @@ interface CapturedResultItem {
26
35
27
36
## type
28
37
29
-
A property of type `EnumCapturedResultItemType` that specifies the type of the captured result item.
38
+
A property of type [EnumCapturedResultItemType]({{ site.enums }}core/captured-result-item-type.html?lang=js) that specifies the type of the captured result item.
Copy file name to clipboardExpand all lines: programming/javascript/api-reference/core/basic-structures/captured-result.md
+17-8Lines changed: 17 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,15 @@ noTitleIndex: true
12
12
13
13
The [CapturedResult]({{ site.dcv_js_api }}core/basic-structures/captured-result.html) interface describes the basic structure of a result item returned by Dynamsoft Capture Vision Router.
14
14
15
+
> NOTE:
16
+
>
17
+
> Depending on the functional module that generated the result item, the interface may vary:
0 commit comments