josal/entities/worker.d.ts

12 lines
226 B
TypeScript
Raw Normal View History

import type { ComputingUnit } from "./unit.d.ts"
export type Worker = {
uuid: string
/* address for receive payments */
address?: string
name?: string
price?: ComputingUnit
/* address to node server */
node?: string
}