UNPKG

jslib-nightly

Version:

SheerID JavaScript Library

12 lines (11 loc) 482 B
import { LogLevel, VerificationStore } from '../../types/types'; export declare const logger: { error: (err: Error | string, errorMessageGroup?: string) => void; warn: (...args: any[]) => void; log: (...args: any[]) => void; info: (...args: any[]) => void; logAPIResponseTime: (url: string, time: number) => void; setLogLevel: (desiredLogLevel: LogLevel) => void; setPrefix: (thisPrefix: string) => void; init: (store: VerificationStore) => void; };