mirror of
https://github.com/penpot/penpot.git
synced 2026-08-10 06:48:49 +00:00
The upgrade allows ts-ignore annotations and manually declared type information to be removed.
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 {};
|