@yidun/livedetect-sdk-h5
Version:
活体检测 H5
10 lines (9 loc) • 334 B
TypeScript
export declare type LogType = 'info' | 'warn' | 'error';
export declare const logerPrefix = "[NELiveDetection]";
declare const _: {
log(type: LogType, msg: string): void;
warn(msg: string): void;
error(msg: string): void;
assert(condition: boolean, msg: string, hook: (msg: string) => any): void;
};
export default _;