Skip to content

Commit 6175dfa

Browse files
author
colin-grant-work
authored
Export interfaces to aid extension (#10547)
Exports two local interfaces in process-task-runner.ts
1 parent 9d0e1d3 commit 6175dfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/task/src/node/process/process-task-runner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ import { ProcessTaskError, CommandOptions } from '../../common/process/task-prot
4040
import * as fs from 'fs';
4141
import { ShellProcess } from '@theia/terminal/lib/node/shell-process';
4242

43-
interface OsSpecificCommand {
43+
export interface OsSpecificCommand {
4444
command: string,
4545
args: Array<string | ShellQuotedString> | undefined,
4646
options: CommandOptions
4747
}
4848

49-
interface ShellSpecificOptions {
49+
export interface ShellSpecificOptions {
5050
/** Arguments passed to the shell, aka `command` here. */
5151
execArgs: string[];
5252
/** Pack of functions used to escape the `subCommand` and `subArgs` to run in the shell. */

0 commit comments

Comments
 (0)