@regulaforensics/document-reader-typings
Version:
Document Reader API typings
27 lines (26 loc) • 418 B
TypeScript
/**
* Enumeration contains identificators which determinate the level of logs detalization.
* @enum {string}
*/
export declare enum eLogLevel {
/**
* Fatal error
*/
FATAL_ERROR = "FatalError",
/**
* Error
*/
ERROR = "Error",
/**
* Warning
*/
WARNING = "Warning",
/**
* Info
*/
INFO = "Info",
/**
* Debug
*/
DEBUG = "Debug"
}