chore: Fix types in tests 36/N.

This commit is contained in:
cpojer
2026-02-17 15:46:48 +09:00
parent 2a4ca7671e
commit 7b31e8fc59
14 changed files with 86 additions and 42 deletions

View File

@@ -4,7 +4,7 @@ import { createEmptyPluginRegistry, type PluginRegistry } from "./registry.js";
import type {
PluginHookBeforeModelResolveResult,
PluginHookBeforePromptBuildResult,
TypedPluginHookRegistration,
PluginHookRegistration,
} from "./types.js";
function addTypedHook(
@@ -23,7 +23,7 @@ function addTypedHook(
handler,
priority,
source: "test",
} as TypedPluginHookRegistration);
} as PluginHookRegistration);
}
describe("phase hooks merger", () => {