Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 15x 15x 15x 15x | /**
* A camera for video input available to be used on the device.
*/
export interface Camera {
/**
* The unique identifier for the device, can change between page loads.
*/
readonly deviceId: string;
/**
* The label describing the device.
*/
readonly label: string;
/**
* The type (facing mode/direction) of camera: back (environment) or front (user).
*
* Not guaranteed to be correct: depending on device, browser and camera it could not correspond to the camera's real
* type.
*/
readonly cameraType: Camera.Type;
/**
* The current video resolution if and when the camera is in use, given as width and height in pixels.
*/
currentResolution?: { width: number; height: number };
}
export namespace Camera {
/**
* Camera type (facing mode/direction).
*
* Not guaranteed to be correct: depending on device, browser and camera it could not correspond to the camera's real
* type.
*/
export enum Type {
/**
* Front (user) facing camera.
*/
FRONT = "front",
/**
* Back (environment) facing camera.
*/
BACK = "back",
}
}
|