import { PlatformAccessory, CharacteristicGetCallback } from 'homebridge'; import { HTTPTempHomebridgePlatform } from './platform'; /** * Platform Accessory * An instance of this class is created for each accessory your platform registers * Each accessory may expose multiple services of different service types. */ export declare class HTTPTempPlatformAccessory { private readonly platform; private readonly accessory; private service; private accessoryStates; constructor(platform: HTTPTempHomebridgePlatform, accessory: PlatformAccessory); /** * Handle the "GET" requests from HomeKit * These are sent when HomeKit wants to get the current temperature from openweathermap. * */ getTemperature(callback: CharacteristicGetCallback): void; } //# sourceMappingURL=platformAccessory.d.ts.map