@microblink/blinkid-in-browser-sdk
Version:
A simple ID scanning library for WebAssembly-enabled browsers.
14 lines (13 loc) • 425 B
TypeScript
/**
* Copyright (c) Microblink Ltd. All rights reserved.
*/
export interface DocumentNumberAnonymizationSettings {
/**
* Defines how many digits at the beginning of the document number remain visible after anonymization.
*/
prefixDigitsVisible: number;
/**
* Defines how many digits at the end of the document number remain visible after anonymization.
*/
suffixDigitsVisible: number;
}