mcopy/app/lib/intval/index.d.ts

13 lines
340 B
TypeScript
Raw Normal View History

/** @module lib/intval */
/**
* Class representing all intval3 camera features.
*/
export declare class Intval {
2022-10-07 23:47:56 +00:00
private _baseUrl;
constructor(url: string);
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;
}