UNPKG

python-to-typescript-porting-mcp-server

Version:

Comprehensive MCP server providing systematic tools and references for Python-to-TypeScript porting with real-world examples

12 lines 398 B
import type { SrcbookType } from './types.js'; export interface EncodeOptions { inline?: boolean; } export interface DecodeResult { error: boolean; srcbook?: SrcbookType; errors?: string[]; } export declare function encode(srcbook: SrcbookType, options?: EncodeOptions): string; export declare function decode(srcmdContent: string): DecodeResult; //# sourceMappingURL=srcmd.d.ts.map