mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-05-26 15:16:14 +00:00
12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
import {ModelContext, WebMcpTool} from '../src/webmcp_types';
|
|
|
|
declare global {
|
|
interface Window {
|
|
__registeredTools?: WebMcpTool[];
|
|
}
|
|
|
|
interface Navigator {
|
|
modelContext?: ModelContext;
|
|
}
|
|
}
|