node-hue-api
Version:
Philips Hue API Library for Node.js
12 lines (11 loc) • 340 B
TypeScript
import { ApiEndpoint } from './ApiEndpoint';
declare const lightsApi: {
getAllLights: ApiEndpoint;
getNewLights: ApiEndpoint;
searchForNewLights: ApiEndpoint;
getLightAttributesAndState: ApiEndpoint;
setLightAttributes: ApiEndpoint;
setLightState: ApiEndpoint;
deleteLight: ApiEndpoint;
};
export { lightsApi };