@idscan/idvc2
Version:
component for the capturing documents
25 lines (22 loc) • 476 B
text/typescript
export type RealFaceMode = keyof typeof realFaceModes;
const realFaceModes = {
/**
* enable "realFaceMode" only for iphone.
*/
auto: {
description: 'enable "realFaceMode" only for iphone.',
},
/**
* disable this option.
*/
none: {
description: 'disable this option.',
},
/**
* enable "realFaceMode" for all devices.
*/
all: {
description: 'enable "realFaceMode" for all devices.',
},
} as const;
export default realFaceModes;