UNPKG
homebridge-keyble
Version:
latest (0.1.0)
0.1.0
HomeKit Support for Eqiva EQ3 Doorlocks
github.com/gothma/homebridge-keyble
gothma/homebridge-keyble
homebridge-keyble
/
src
/
index.ts
12 lines
(9 loc)
•
277 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
API
}
from
'homebridge'
;
import
{
PLATFORM_NAME
}
from
'./settings'
;
import
{
KeyblePlatform
}
from
'./platform'
;
/** * This method registers the platform with Homebridge */
export
= (
api
:
API
):
void
=>
{ api.
registerPlatform
(
PLATFORM_NAME
,
KeyblePlatform
); };