UNPKG

homebridge-logo-platform

Version:
12 lines (9 loc) 286 B
import { API } from 'homebridge'; import { PLATFORM_NAME } from './settings'; import { LogoHomebridgePlatform } from './platform'; /** * This method registers the platform with Homebridge */ export = (api: API) => { api.registerPlatform(PLATFORM_NAME, LogoHomebridgePlatform); };