josal/entities/unit.d.ts

12 lines
179 B
TypeScript
Raw Normal View History

export type Unit = {
unit: string
count: number
}
export type ComputingUnit = {
cpu: number | Unit
mem: number | Unit
persistence: number | Unit
bandwitch: number | Unit
}