From fc6622bdb16c95799b960d28e45b879dab33002f Mon Sep 17 00:00:00 2001 From: bedlam343 Date: Thu, 23 May 2024 13:49:33 -0700 Subject: [PATCH] fix --- src/types/channel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/channel.ts b/src/types/channel.ts index 96af868..09e27ab 100644 --- a/src/types/channel.ts +++ b/src/types/channel.ts @@ -15,7 +15,7 @@ type Channel = ListHistoryChannel; // add more as needed // ~~~~~ Dictionary ~~~~~ type ChannelDictionary = { - ['list-history']?: ListHistoryChannel; + [key in ChannelId]?: Channel; }; export type {