UNPKG

the-moby-effect

Version:
15 lines (13 loc) 524 B
import * as Schema from "effect/Schema"; import * as MobySchemas from "../schemas/index.js"; export class SwarmDispatcherConfig extends Schema.Class<SwarmDispatcherConfig>("SwarmDispatcherConfig")( { HeartbeatPeriod: Schema.optional(MobySchemas.Int64), }, { identifier: "SwarmDispatcherConfig", title: "swarm.DispatcherConfig", documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/swarm/swarm.go#L102-L107", } ) {}