Type alias RunCommandType

RunCommandType: {
    commandLine: string;
    endFilePath?: string;
    errorFilePath: string;
    folderPath: string;
    inputFilePath: string;
    isolated: boolean;
    lockFilePath?: string;
    logFilePath: string;
    memoryLimit: number;
    next?: RunnerNextType;
    outputFilePath: string;
    rawExecution?: boolean;
    timeLimit: number;
}

Type declaration

  • commandLine: string
  • Optional endFilePath?: string
  • errorFilePath: string
  • folderPath: string
  • inputFilePath: string
  • isolated: boolean
  • Optional lockFilePath?: string
  • logFilePath: string
  • memoryLimit: number
  • Optional next?: RunnerNextType
  • outputFilePath: string
  • Optional rawExecution?: boolean
  • timeLimit: number