From 4f44377312c04610cd8b4989e4c1325f7fcc08bb Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 2 May 2026 00:12:45 +0100 Subject: [PATCH] fix(plugins): type web runtime plugin origins --- src/plugins/runtime/runtime-web-channel-plugin.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/runtime/runtime-web-channel-plugin.ts b/src/plugins/runtime/runtime-web-channel-plugin.ts index 40dadfc9edd..1e2f1354757 100644 --- a/src/plugins/runtime/runtime-web-channel-plugin.ts +++ b/src/plugins/runtime/runtime-web-channel-plugin.ts @@ -9,6 +9,7 @@ import { } from "../../media/web-media.js"; import type { PollInput } from "../../polls.js"; import type { PluginJitiLoaderCache } from "../jiti-loader-cache.js"; +import type { PluginOrigin } from "../plugin-origin.types.js"; import { loadPluginBoundaryModule, resolvePluginRuntimeRecordByEntryBaseNames, @@ -16,7 +17,7 @@ import { } from "./runtime-plugin-boundary.js"; type WebChannelPluginRecord = { - origin?: string; + origin?: PluginOrigin; rootDir?: string; source: string; };