Skip to content

Commit

Permalink
✨ feat: make failed property optional in ShellOutput
Browse files Browse the repository at this point in the history
The `failed` field in ShellOutput is now optional for flexibility.
  • Loading branch information
pelikhan committed Feb 22, 2025
1 parent 6aae946 commit 50144a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/types/prompt_template.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3845,7 +3845,7 @@ interface ShellOutput {
stdout?: string
stderr?: string
exitCode: number
failed: boolean
failed?: boolean
}

interface BrowserOptions {
Expand Down

0 comments on commit 50144a6

Please sign in to comment.