UNPKG

rxjs-obd

Version:

RxJS Implementation for OBD (On Board Diagnostics) of vehicles via ELM 327 connections.

4 lines (3 loc) 181 B
import { Observable } from 'rxjs'; import { OBDEvent } from '../model/OBDEvent'; export declare const fromOBD: (config?: import("../connection").OBDConfig) => Observable<OBDEvent>;