react-native-star-io10
Version:
react-native-star-io10 is a library for supporting application development for Star Micronics devices.
15 lines (14 loc) • 746 B
TypeScript
import { StarPrinterInformationLan } from './StarPrinterInformationLan';
import { StarPrinterInformationBluetooth } from './StarPrinterInformationBluetooth';
import { StarPrinterInformationBluetoothLE } from './StarPrinterInformationBluetoothLE';
import { StarPrinterInformationUsb } from './StarPrinterInformationUsb';
export declare class StarPrinterInformationDetail {
_lan: StarPrinterInformationLan;
_bluetooth: StarPrinterInformationBluetooth;
_bluetoothLE: StarPrinterInformationBluetoothLE;
_usb: StarPrinterInformationUsb;
get lan(): StarPrinterInformationLan;
get bluetooth(): StarPrinterInformationBluetooth;
get bluetoothLE(): StarPrinterInformationBluetoothLE;
get usb(): StarPrinterInformationUsb;
}