Skip to content

Commit

Permalink
feat(cli): fix typing of crane.exportImage
Browse files Browse the repository at this point in the history
  • Loading branch information
tuler committed Oct 22, 2024
1 parent 1317fee commit e74026b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cli/src/exec/crane.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export const requiredVersion = new Range("^0.19.1");

export const exportImage = async (
options: {
stdin: Stream;
stdout: Stream;
stdin: Stream | number;
stdout: Stream | number;
} & DockerFallbackOptions,
) => {
const { image, stdin, stdout } = options;
Expand Down

0 comments on commit e74026b

Please sign in to comment.