Skip to content

Commit 4efc8c8

Browse files
Merge pull request #216 from DusterTheFirst/patch-2
Changed return value of get()
2 parents 6bbe44d + 654af8f commit 4efc8c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/typings/VideoCapture.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Mat } from './Mat.d';
33
export class VideoCapture {
44
constructor(filePath: string);
55
constructor(devicePort: number);
6-
get(property: number): void;
6+
get(property: number): number;
77
read(): Mat;
88
readAsync(): Promise<Mat>;
99
release(): void;

0 commit comments

Comments
 (0)