rpi-cam-lib
Version:
A lightweight library to control CSI-2 camera modules via any raspberry pi can read camera module but is dependent to shell.
4 lines (3 loc) • 409 B
TypeScript
import type { ICameraStillOptions, ICameraVideoOptions } from "../interfaces";
export declare const _serveStill_params: (index: number, filename: string, width: number, height: number, options?: ICameraStillOptions) => string;
export declare const _serveVideo_params: (index: number, filename: string, timeout: number, width: number, height: number, options?: Omit<ICameraVideoOptions, "timeout">) => string;