Dr. Dominik Jain a749763fb1
⬆️ Upgrade plugin-types and plugin-styles to v1.5.0 in MCP plugin (#10830)
The upgrade allows ts-ignore annotations and manually declared type information
to be removed.
2026-07-27 09:10:04 +02:00

13 lines
243 B
TypeScript

interface McpOptions {
getToken(): string;
getServerUrl(): string;
setMcpStatus(status: string);
on(eventType: "disconnect" | "connect", cb: () => void);
}
declare global {
const mcp: undefined | McpOptions;
}
export {};