Fix types

This commit is contained in:
Przemek Więch
2026-05-08 18:42:25 +02:00
parent d427300ddf
commit ac26e6c3cb

12
tests/global.d.ts vendored
View File

@@ -1,3 +1,11 @@
interface Window {
__registeredTools?: any[];
import {ModelContext} from '../src/webmcp_types';
declare global {
interface Window {
__registeredTools?: any[];
}
interface Navigator {
modelContext?: ModelContext;
}
}