josal/entities/provider.d.ts

16 lines
261 B
TypeScript
Raw Permalink Normal View History

import type { Unit } from "./unit.d.ts"
2024-09-05 21:02:35 +03:00
export type Provider = {
uuid: string
name: string
api: string
description?: string
price: PriceTable
/* address for receive payments */
address: string
2024-09-05 21:02:35 +03:00
}
type PriceTable = {
[x: string]: ComputingUnit | Unit
2024-09-05 21:02:35 +03:00
}