UNPKG

react-native-vision-camera

Version:

A powerful, high-performance React Native Camera library.

14 lines 288 B
/** * Represents a Point in a 2 dimensional coordinate system. */ export interface Point { /** * The X coordinate of this Point. (double) */ x: number; /** * The Y coordinate of this Point. (double) */ y: number; } //# sourceMappingURL=Point.d.ts.map