diff options
Diffstat (limited to 'packages/create-astro/src/shell.ts')
-rw-r--r-- | packages/create-astro/src/shell.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/create-astro/src/shell.ts b/packages/create-astro/src/shell.ts index 7c3e22622..253097c4a 100644 --- a/packages/create-astro/src/shell.ts +++ b/packages/create-astro/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; |