mirror of
https://github.com/penpot/penpot.git
synced 2026-05-08 09:38:43 +00:00
13 lines
243 B
TypeScript
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 {};
|