Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.57 KB

capture-vision-router-module-class-v2.0.10.md

File metadata and controls

43 lines (31 loc) · 1.57 KB
layout title description keywords needAutoGenerateSidebar needGenerateH3Content noTitleIndex
default-layout
Class CaptureVisionRouterModule - Dynamsoft CaptureVisionRouter Module JS Edition API Reference
This page introduces the CaptureVisionRouterModule class in Dynamsoft CaptureVisionRouter Module JS Edition.
CaptureVisionRouterModule, api reference, javascript, js
true
true
true

CaptureVisionRouterModule Class

This class defines common functionality in the CaptureVisionRouter module. At present, it has only one method.

Name Description
static getVersion() Returns the version of the CaptureVisionRouter module.
static engineResourcePath Sets or returns the path to find the resources files (.wasm, etc.).

getVersion

Returns the version of the CaptureVisionRouter module.

static getVersion(): string;

Code snippet

const version = Dynamsoft.CaptureVisionRouter.CaptureVisionRouterModule.getVersion();
console.log(version);

engineResourcePath

Sets or returns the path to find the resources files (.wasm, etc.).

Code snippet

Dynamsoft.CVR.CaptureVisionRouterModule.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.30/dist/";