Houjie
2025-04-25 e5664351d1ebcbabe0c2ab87bcb4553557feb78e
1
2
3
4
5
6
import { Camera } from "./core";
export declare class CameraFactory {
    static failIfNotSupported(): Promise<CameraFactory>;
    private constructor();
    create(videoConstraints: MediaTrackConstraints): Promise<Camera>;
}