diff options
Diffstat (limited to 'packages/upgrade/src/shell.ts')
-rw-r--r-- | packages/upgrade/src/shell.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/upgrade/src/shell.ts b/packages/upgrade/src/shell.ts index cd16e0d02..a795b2c6c 100644 --- a/packages/upgrade/src/shell.ts +++ b/packages/upgrade/src/shell.ts @@ -6,12 +6,12 @@ import type { Readable } from 'node:stream'; import { spawn } from 'node:child_process'; import { text as textFromStream } from 'node:stream/consumers'; -export interface ExecaOptions { +interface ExecaOptions { cwd?: string | URL; stdio?: StdioOptions; timeout?: number; } -export interface Output { +interface Output { stdout: string; stderr: string; exitCode: number; |