UNPKG

rtljs

Version:

node.js interface for librtl-sdr, using FFI-NAPI. Works with newer versions of node (like v16)

9 lines (8 loc) 550 B
import { getDeviceCount, getDeviceName, getDeviceUSBStrings, getIndexBySerial, open, close, DeviceUSBStrings } from "./rtlsdr-static"; import { rtlsdr_tunerEnum } from "./baremetal"; import * as baremetal from "./baremetal"; import RTLSDRDevice, { XtalFreq } from "./rtlsdr-device"; declare const ghz = 1000000000; declare const mhz = 1000000; declare const khz = 1000; export { getDeviceCount, getDeviceName, getDeviceUSBStrings, getIndexBySerial, open, close, ghz, mhz, khz, rtlsdr_tunerEnum, RTLSDRDevice, DeviceUSBStrings, XtalFreq, baremetal };