josal/entities/deployment.d.ts

15 lines
249 B
TypeScript
Raw Normal View History

import type { Compose } from "./compose.d.ts"
type Spec = string | Compose
2024-09-05 21:02:35 +03:00
export type Deployment = {
kind: string
spec: Spec
promocode?: string
}
export type DeploymentResponse = Deployment & {
uuid: string
payLink: string
}