undergroundwires/privacy.sexy

View on GitHub
src/infrastructure/CodeRunner/Execution/CommandDefinition/CommandDefinition.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface CommandDefinition {
  buildShellCommand(filePath: string): string;
  isExecutionTerminatedExternally(exitCode: number): boolean;
  isExecutablePermissionsRequiredOnFile(): boolean;
}