buildah-build/src/types.ts

6 lines
84 B
TypeScript
Raw Normal View History

type CommandResult = {
exitCode: number
output: string
error: string
};