@microblink/blinkid-in-browser-sdk
Version:
A simple ID scanning library for WebAssembly-enabled browsers.
27 lines (26 loc) • 628 B
TypeScript
/**
* Copyright (c) Microblink Ltd. All rights reserved.
*/
/**
* AnonymizationMode is used to define level of anonymization
* performed on recognizer result.
*/
export declare enum AnonymizationMode {
/**
* Anonymization will not be performed.
*/
None = 0,
/**
* FullDocumentImage is anonymized with black boxes
* covering sensitive data.
*/
ImageOnly = 1,
/**
* Result fields containing sensitive data are removed from result.
*/
ResultFieldsOnly = 2,
/**
* This mode is combination of ImageOnly and ResultFieldsOnly modes.
*/
FullResult = 3
}