kaios-types
    Preparing search index...

    Interface CameraConfiguration

    Configuration options for getting a camera instance.

    interface CameraConfiguration {
        mode?: CameraMode;
        pictureSize?: CameraSize | null;
        previewSize?: CameraSize | null;
        recorderProfile?: string;
    }
    Index

    Properties

    mode?: CameraMode

    The initial mode for the camera.

    "picture"
    
    pictureSize?: CameraSize | null

    The size of the captured picture.

    null
    
    previewSize?: CameraSize | null

    The size of the preview stream.

    null
    
    recorderProfile?: string

    The profile to use for recording.

    "default"