react-native-scanbot-sdk
Version:
Scanbot Document and Barcode Scanner SDK React Native Plugin for Android and iOS
13 lines • 364 B
TypeScript
export type Status = 'OK' | 'CANCELED';
export type ResultWrapper<T> = {
status: Status;
} & T;
export type ResultWrapperWithMetadata<T, K> = {
metadata?: K;
} & ResultWrapper<T>;
export type DocumentScannerMetadata = {
autoSnappingEnabled: boolean;
flashEnabled: boolean;
multiPageEnabled: boolean;
};
//# sourceMappingURL=customTypes.d.ts.map