13 lines
340 B
TypeScript
13 lines
340 B
TypeScript
/** @module lib/intval */
|
|
/**
|
|
* Class representing all intval3 camera features.
|
|
*/
|
|
export declare class Intval {
|
|
private _baseUrl;
|
|
constructor(url: string);
|
|
move(): Promise<number>;
|
|
setDir(dir: boolean): Promise<number>;
|
|
setExposure(exposure: number, cb: Function): Promise<number>;
|
|
connect(cb: Function): void;
|
|
}
|