Files
Central/frontend/services/dto/deploy.ts

10 lines
127 B
TypeScript

type TagListResponse = {
tags: string[]
}
type DeployResult = {
success: boolean
output: string
tag: string
}