Files
topola-viewer/tests/global.d.ts
Przemek Więch ac26e6c3cb Fix types
2026-05-08 18:42:25 +02:00

12 lines
188 B
TypeScript

import {ModelContext} from '../src/webmcp_types';
declare global {
interface Window {
__registeredTools?: any[];
}
interface Navigator {
modelContext?: ModelContext;
}
}