UNPKG

repl-mcp

Version:

Universal REPL session manager MCP server

6 lines 544 B
import { REPLConfig } from './types.js'; export declare const DEFAULT_REPL_CONFIGS: Record<string, REPLConfig>; export declare function getConfigByName(name: string): REPLConfig | undefined; export declare function listAvailableConfigs(): string[]; export declare function createCustomConfig(name: string, shell: REPLConfig['shell'], commands: string[], startingDirectory?: string, environment?: Record<string, string>, promptPattern?: string, timeout?: number, type?: REPLConfig['type']): REPLConfig; //# sourceMappingURL=repl-configs.d.ts.map