react-native-scanbot-sdk
Version:
Scanbot Document and Barcode Scanner SDK React Native Plugin for Android and iOS
17 lines • 394 B
TypeScript
export declare class PartiallyConstructible {
}
export type DeepPartial<T> = T extends PartiallyConstructible ? {
[P in keyof T]?: DeepPartial<T[P]>;
} : T;
export declare class Point {
x: number;
y: number;
constructor(x: number, y: number);
}
export type Rectangle = {
width: number;
height: number;
x: number;
y: number;
};
//# sourceMappingURL=utils.d.ts.map