14 lines
199 B
TypeScript
14 lines
199 B
TypeScript
|
export type Unit = {
|
||
|
unit: string
|
||
|
count: number
|
||
|
}
|
||
|
|
||
|
export type ComputingUnit = {
|
||
|
cpu: number | Unit
|
||
|
mem: number | Unit
|
||
|
persistence: number | Unit
|
||
|
bandwitch: number | Unit
|
||
|
}
|
||
|
|
||
|
|