10 lines
127 B
TypeScript
10 lines
127 B
TypeScript
type TagListResponse = {
|
|
tags: string[]
|
|
}
|
|
|
|
type DeployResult = {
|
|
success: boolean
|
|
output: string
|
|
tag: string
|
|
}
|