react-native-obd-retriver
Version:
A React Native hook library to manage Bluetooth Low Energy connections and communication with ELM327 OBD-II adapters.
10 lines • 341 B
TypeScript
import React from 'react';
import type { RawDTCResponse } from '../ecu/retrievers/BaseDTCRetriever';
interface DTCRawDataViewerProps {
title: string;
data: RawDTCResponse | null;
loading?: boolean;
}
export declare const DTCRawDataViewer: React.FC<DTCRawDataViewerProps>;
export {};
//# sourceMappingURL=DTCRawDataViewer.d.ts.map