UNPKG

compile-run-kira

Version:

You can execute programs in diff languages using this package

19 lines (18 loc) 615 B
export interface Options { timeout?: number; stdin?: string; compileTimeout?: number; /** * Path to the compiler like for java=>javac'path, cpp,c=>gcc's path * * can be a path like string to the compiler or custom command name whose path is already set */ compilationPath?: string; /** * Path to the execution Command like for python,node,java * * Can be a path like string to the compiler or custom command name whose path is already set * like some people use python3 for python v3.6 and python for python v2.7 */ executionPath?: string; }