homebridge-smarthomeng/src/index.ts
2022-02-08 17:01:36 +01:00

12 lines
282 B
TypeScript

import { API } from 'homebridge';
import { PLATFORM_NAME } from './settings';
import { SmartHomeNGPlatform } from './platform';
/**
* This method registers the platform with Homebridge
*/
export = (api: API) => {
api.registerPlatform(PLATFORM_NAME, SmartHomeNGPlatform);
};