(args: string[], options: SpawnOptions)
| 10 | export interface IJupyterCommand { |
| 11 | interpreter(): Promise<PythonEnvironment | undefined>; |
| 12 | exec(args: string[], options: SpawnOptions): Promise<ExecutionResult<string>>; |
| 13 | } |
| 14 | |
| 15 | export const IJupyterCommandFactory = Symbol('IJupyterCommandFactory'); |
no outgoing calls