From ef0d11c0420dacd03ebe66e38e4cc6bc1c9838f9 Mon Sep 17 00:00:00 2001 From: Ian Richardson Date: Tue, 23 Oct 2018 02:33:04 -0500 Subject: [PATCH] `connection` is being populated for `HomeAssistant` type, not `conn` (#1841) --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 055dab505d..632f07d82d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -47,7 +47,7 @@ export interface Translation { export interface HomeAssistant { auth: Auth; - conn: Connection; + connection: Connection; connected: boolean; states: HassEntities; config: HassConfig;