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