UNPKG

react-native-vision-camera

Version:

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

14 lines (13 loc) 285 B
/** * Represents a numeric range with a minimum and maximum value, inclusive on both ends. */ export interface Range { /** * The lower bound of the range, inclusive. */ min: number; /** * The upper bound of the range, inclusive. */ max: number; }