@toolplex/client
Version:
The official ToolPlex client for AI agent tool discovery and execution
12 lines (11 loc) • 356 B
TypeScript
declare class InstallObserver {
private serverInstallActions;
constructor();
recordInstall(serverId: string): void;
recordUninstall(serverId: string): void;
wasServerInstalled(serverId: string): boolean;
wasServerUninstalled(serverId: string): boolean;
clear(): void;
private recordAction;
}
export default InstallObserver;