UNPKG

je_nfc_sdk

Version:

A comprehensive React Native SDK for NFC-based device control and communication

18 lines 532 B
type LogLevel = 'log' | 'success' | 'info' | 'warn' | 'error'; interface LogEntry { level: LogLevel; message: string; timestamp: string; } declare const LoggerService: { privateLog(level: LogLevel, message: string): void; log(message: string): void; success(message: string): void; info(message: string): void; warn(message: string): void; error(message: string): void; getLogs(): LogEntry[]; clearLogs(): void; }; export default LoggerService; //# sourceMappingURL=LoggerService.d.ts.map