UNPKG

react-native-vision-camera

Version:

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

15 lines (14 loc) 224 B
/** * Represents a Point in the current context's * coordinate system. */ export interface Point { /** * The X coordinate of the Point. */ x: number /** * The Y coordinate of the Point. */ y: number }