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
Divyanshu Agrawal 88e0085544
Add feature to output image with multiple tags (#21)
Signed-off-by: divyansh42 <diagrawa@redhat.com>
2021-02-01 12:54:50 -05:00

7 lines
115 B
TypeScript

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