@idscan/idvc2
Version:
component for the capturing documents
6 lines (5 loc) • 317 B
TypeScript
type ModuleNames = 'mrz' | 'pdf' | 'face' | 'front' | 'barcode';
type FunctionNames = ModuleNames | 'back';
declare const stepFunctionWrapper: (functionName: FunctionNames, ...args: any[]) => any;
export declare const isStepFunctionExist: (functionName: FunctionNames) => boolean;
export default stepFunctionWrapper;