From f7458b8d41a661628b28d3d5329f5c984d4767d3 Mon Sep 17 00:00:00 2001 From: Zack Arnett Date: Mon, 29 Oct 2018 20:12:20 -0400 Subject: [PATCH] Add Hs_color to types --- src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types.ts b/src/types.ts index b0d3fd2a88..5a3e209cfa 100644 --- a/src/types.ts +++ b/src/types.ts @@ -118,5 +118,6 @@ export type LightEntity = HassEntityBase & { max_mireds: number; friendly_name: string; brightness: number; + hs_color: string[]; }; };