python2igcse
Version:
Convert Python code to IGCSE Pseudocode format
13 lines • 554 B
TypeScript
import type { ConversionOptions, ConversionResult } from './types';
/**
* Convert Python file to IGCSE pseudocode (Node.js only)
*/
export declare function convertFileToIGCSE(filePath: string, options?: Partial<ConversionOptions>): Promise<ConversionResult>;
/**
* Convert multiple Python files to IGCSE pseudocode (Node.js only)
*/
export declare function convertFilesToIGCSE(filePaths: string[], options?: Partial<ConversionOptions>): Promise<Array<{
name: string;
result: ConversionResult;
}>>;
//# sourceMappingURL=converter-node.d.ts.map