mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-21 10:39:26 +08:00
7 lines
129 B
TypeScript
7 lines
129 B
TypeScript
import {ExecOutput} from '@actions/exec'
|
|
|
|
export interface DeployResult {
|
|
execResult: ExecOutput
|
|
manifestFiles: string[]
|
|
}
|