Interface VideoScanner

Represents a video scanner that can start, stop, and close the scanning process, and update its configuration.

interface VideoScanner {
    close: (() => void);
    setOptions: ((videoScannerOptions) => void);
    start: (() => void);
    stop: (() => void);
}

Properties

close: (() => void)

Closes the scanner and performs cleanup operations.

Type declaration

    • (): void
    • Closes the scanner and performs cleanup operations.

      Returns void

setOptions: ((videoScannerOptions) => void)

Update the configuration options of the VideoScanner.

Type declaration

    • (videoScannerOptions): void
    • Update the configuration options of the VideoScanner.

      Parameters

      Returns void

Param: videoScannerOptions

New configuration options.

start: (() => void)

Starts the scanning process.

Type declaration

    • (): void
    • Starts the scanning process.

      Returns void

stop: (() => void)

Stops the scanning process.

Type declaration

    • (): void
    • Stops the scanning process.

      Returns void

Generated using TypeDoc