From df351f16a495a5fd6c44128615e6eb3c995b152d Mon Sep 17 00:00:00 2001 From: Robin Date: Wed, 8 Jan 2025 11:03:01 -0500 Subject: [PATCH] Export theme and language action types (#119) I missed this earlier, and it's breaking CI because one of the files is considered unused. --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index eaea676..cca9f23 100644 --- a/src/index.ts +++ b/src/index.ts @@ -62,6 +62,8 @@ export type * from "./interfaces/GetMediaConfigAction"; export * from "./interfaces/UpdateDelayedEventAction"; export type * from "./interfaces/UploadFileAction"; export type * from "./interfaces/DownloadFileAction"; +export type * from "./interfaces/ThemeChangeAction"; +export type * from "./interfaces/LanguageChangeAction"; // Complex models export * from "./models/WidgetEventCapability";