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

15 lines
261 B
TypeScript

import type { Unit } from "./unit.d.ts"
export type Provider = {
uuid: string
name: string
api: string
description?: string
price: PriceTable
/* address for receive payments */
address: string
}
type PriceTable = {
[x: string]: ComputingUnit | Unit
}