import { IPathDependencies } from "@fad-producto/fad-common/models/core"; export interface IAcuantPathDependencies extends IPathDependencies { /** * Path of the directory from which Acuant resources will be attempted to be loaded */ acuantDirectory?: string; images?: { /** * Image path to be showed in the manual capture on mobile devices * in front capture (side = 0) */ instructionFrontManualCaptureMobile?: string; /** * Image path to be showed in the manual capture on mobile devices * in back capture (side = 1) */ instructionBackManualCaptureMobile?: string; /** * Image path to be showed in the manual capture on desktop devices * in front capture (side = 0) */ instructionFrontManualCaptureDesktop?: string; /** * Image path to be showed in the manual capture on desktop devices * in back capture (side = 1) */ instructionBackManualCaptureDesktop?: string; }; }