mirror of
https://fastgit.cc/github.com/Yeachan-Heo/oh-my-claudecode
synced 2026-04-20 21:00:50 +08:00
16 lines
528 B
TypeScript
Generated
16 lines
528 B
TypeScript
Generated
/**
|
|
* Python REPL Tool - Persistent Python execution environment
|
|
*
|
|
* Provides a persistent Python REPL with variable persistence across
|
|
* tool invocations, session locking, and structured output markers.
|
|
*/
|
|
import { pythonReplHandler } from './tool.js';
|
|
export declare const pythonReplTool: {
|
|
name: string;
|
|
description: string;
|
|
schema: any;
|
|
handler: typeof pythonReplHandler;
|
|
};
|
|
export * from './types.js';
|
|
export { pythonReplSchema, pythonReplHandler } from './tool.js';
|
|
//# sourceMappingURL=index.d.ts.map
|