diff --git a/src/utils/message-channel.ts b/src/utils/message-channel.ts index 90dcf042ebe..da11cb43064 100644 --- a/src/utils/message-channel.ts +++ b/src/utils/message-channel.ts @@ -33,7 +33,10 @@ export type InterSessionChannel = typeof INTER_SESSION_CHANNEL; * Checked in both plugin install (validatePluginId) and runtime channel * registration (registerChannel) to cover all registration paths. */ -export const RESERVED_CHANNEL_IDS = new Set([INTER_SESSION_CHANNEL, INTERNAL_MESSAGE_CHANNEL]); +export const RESERVED_CHANNEL_IDS: Set = new Set([ + INTER_SESSION_CHANNEL, + INTERNAL_MESSAGE_CHANNEL, +]); export function isInterSessionChannel(raw?: string | null): boolean { // Guard against collision with real deliverable plugin channels: a plugin