12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
|
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
|
||
|
}
|