obd-raw-data-parser
Version:
A React Native hook library to manage Bluetooth Low Energy connections and communication with ELM327 OBD-II adapters.
13 lines • 512 B
TypeScript
/**
* A simplified logging utility that replaces react-native-beautiful-logs
* with basic console logging functionality.
*/
export type LogLevel = 'debug' | 'info' | 'warn' | 'error';
/**
* Main logging function that provides a simple console logging with timestamp and log level.
*
* @param levelOrMessage - Log level or message
* @param args - Additional arguments to log
*/
export declare const log: (levelOrMessage: LogLevel | string, ...args: unknown[]) => void;
//# sourceMappingURL=logger.d.ts.map