react-native-scanbot-sdk
Version:
Scanbot Document and Barcode Scanner SDK React Native Plugin for Android and iOS
22 lines • 401 B
JavaScript
export class PartiallyConstructible {
/** @internal */
_marker() {}
}
/** @internal */
export function mapRTUUIResult(result, LClass) {
if (result.status === 'CANCELED') {
return result;
} else {
return {
...result,
data: new LClass(result.data)
};
}
}
export class Point {
constructor(x, y) {
this.x = x;
this.y = y;
}
}
//# sourceMappingURL=utils.js.map