mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-04-20 17:11:23 +00:00
7 lines
115 B
TypeScript
7 lines
115 B
TypeScript
type CommandResult = {
|
|
exitCode: number
|
|
output: string
|
|
error: string
|
|
};
|
|
|
|
export default CommandResult;
|