UNPKG

@idscan/idvc2

Version:

component for the capturing documents

15 lines (13 loc) 260 B
export interface ILoopResult { status: boolean, cancel: boolean, touch: boolean, image: ImageData | null, } const defaultLoopResult: ILoopResult = { status: false, cancel: false, touch: false, image: null, }; export default defaultLoopResult;