From 37a5b56dbb21009f938bd36213f7879974433ae8 Mon Sep 17 00:00:00 2001 From: Alexander Thoukydides Date: Mon, 23 Oct 2023 13:04:39 +0000 Subject: [PATCH] Specify default export --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index db855fc..3f6954a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,4 +7,4 @@ import { PLATFORM_NAME } from './settings'; import { AEGPlatform } from './platform'; // Register the platform with Homebridge -export = (api: API) => api.registerPlatform(PLATFORM_NAME, AEGPlatform); \ No newline at end of file +export default (api: API) => api.registerPlatform(PLATFORM_NAME, AEGPlatform); \ No newline at end of file