josal/entities/deployment.d.ts

8 lines
121 B
TypeScript

type Spec = string
export type Deployment = {
uuid: string
kind: string
spec: Spec
promocode?: string
}