@idscan/idvc2
Version:
component for the capturing documents
29 lines (28 loc) • 701 B
TypeScript
export declare class BarcodeModule {
private module;
private isAllocate;
private buffer;
private readonly res;
private stringLib;
constructor(core: any);
init(stringLib: any): void;
allocate(buffer: any): void;
free(): void;
result(status?: boolean, image?: any, touch?: boolean, text?: string): {
status: boolean;
image: any;
touch: boolean;
text: string;
cancel: boolean;
type: string;
};
process(data: any, origData: any): {
status: boolean;
image: any;
touch: boolean;
text: string;
cancel: boolean;
type: string;
};
}
export default BarcodeModule;