2024-05-24 19:23:58 +00:00
|
|
|
/** @module lib/intval */
|
|
|
|
/**
|
|
|
|
* Class representing all intval3 camera features.
|
|
|
|
*/
|
2024-04-06 23:18:15 +00:00
|
|
|
export declare class Intval {
|
2022-10-07 23:47:56 +00:00
|
|
|
private _baseUrl;
|
|
|
|
constructor(url: string);
|
2024-05-23 22:49:18 +00:00
|
|
|
move(): Promise<number>;
|
|
|
|
setDir(dir: boolean): Promise<number>;
|
|
|
|
setExposure(exposure: number, cb: Function): Promise<number>;
|
2022-10-07 23:47:56 +00:00
|
|
|
connect(cb: Function): void;
|
|
|
|
}
|