josal/entities/deployment.d.ts

9 lines
121 B
TypeScript
Raw Normal View History

2024-09-05 21:02:35 +03:00
type Spec = string
export type Deployment = {
uuid: string
kind: string
spec: Spec
promocode?: string
}