2
0
Fork 0
mirror of https://github.com/redhat-actions/buildah-build.git synced 2025-09-15 17:26:56 +00:00
buildah-build/src/types.ts

8 lines
115 B
TypeScript
Raw Normal View History

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