1 2 3 4 5 6 7 8
import type { API } from 'homebridge'; import { PLATFORM_NAME } from './settings.js'; import { Platform } from './platform.js'; export default (api: API) => { api.registerPlatform(PLATFORM_NAME, Platform); };