UNPKG

hap-controller

Version:

Library to implement a HAP (HomeKit) controller

15 lines 1.04 kB
import BLEDiscovery, { HapServiceBle } from './transport/ble/ble-discovery'; import GattClient from './transport/ble/gatt-client'; import HttpClient from './transport/ip/http-client'; import { PairingData, PairingTypeFlags, PairMethods } from './protocol/pairing-protocol'; import IPDiscovery, { HapServiceIp } from './transport/ip/ip-discovery'; import * as Category from './model/category'; import * as Characteristic from './model/characteristic'; import * as GattConstants from './transport/ble/gatt-constants'; import * as GattUtils from './transport/ble/gatt-utils'; import * as HttpConstants from './transport/ip/http-constants'; import * as Service from './model/service'; import * as TLV from './model/tlv'; import HomekitControllerError from './model/error'; export { BLEDiscovery, HapServiceBle, Category, Characteristic, GattClient, GattConstants, GattUtils, HttpClient, HttpConstants, IPDiscovery, HapServiceIp, Service, TLV, PairMethods, PairingTypeFlags, PairingData, HomekitControllerError, }; //# sourceMappingURL=index.d.ts.map