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;