compile-run
Version:
You can execute programs in different languages using this package
9 lines (8 loc) • 428 B
TypeScript
import { LanguageNames } from '../types';
/**
* Writes the source code into the file system and returns a promise that resolves to path of the source file
* @param lang Language of the source code
* @param source string containing source code to be written
*/
export declare function writeSourceFile(lang: LanguageNames, source: string): Promise<string>;
export declare function getExtension(lang: string): Promise<string>;