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

11 lines
252 B
TypeScript
Raw Normal View History

/** @module lib/processing */
/**
* Class representing all Processing camera features.
*/
export declare class Processing {
private _baseUrl;
constructor(url: string);
move(): Promise<number>;
setDir(dir: boolean): Promise<number>;
}