Files
oh-my-opencode/dist/features/skill-mcp-manager/cleanup.d.ts
T
2026-03-14 04:56:50 +00:00

9 lines
671 B
TypeScript

import type { SkillMcpManagerState } from "./types";
export declare function registerProcessCleanup(state: SkillMcpManagerState): void;
export declare function unregisterProcessCleanup(state: SkillMcpManagerState): void;
export declare function startCleanupTimer(state: SkillMcpManagerState): void;
export declare function stopCleanupTimer(state: SkillMcpManagerState): void;
export declare function disconnectSession(state: SkillMcpManagerState, sessionID: string): Promise<void>;
export declare function disconnectAll(state: SkillMcpManagerState): Promise<void>;
export declare function forceReconnect(state: SkillMcpManagerState, clientKey: string): Promise<boolean>;