8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
type Spec = string
|
|
|
|
export type Deployment = {
|
|
uuid: string
|
|
kind: string
|
|
spec: Spec
|
|
promocode?: string
|
|
}
|