UNPKG

react-native-vision-camera

Version:

VisionCamera is the fastest and most powerful Camera for react-native.

14 lines (13 loc) 217 B
/** * Represents a 2D size in pixels. */ export interface Size { /** * The width, in pixels. */ readonly width: number; /** * The height, in pixels. */ readonly height: number; }