josal/entities/unit.d.ts
kogeletey f44e830205
feat: create client way
refactor: formating using biome code
2024-09-08 23:15:54 +03:00

11 lines
179 B
TypeScript

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