UNPKG

the-moby-effect

Version:
39 lines 1.27 kB
import * as Schema from "effect/Schema"; import * as MobySchemas from "../schemas/index.js"; declare const ContainerNode_base: Schema.Class<ContainerNode, { ID: typeof Schema.String; IP: typeof Schema.String; Addr: typeof Schema.String; Name: typeof Schema.String; Cpus: MobySchemas.Int64Schemas.$Int64; Memory: MobySchemas.Int64Schemas.$Int64; Labels: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>; }, Schema.Struct.Encoded<{ ID: typeof Schema.String; IP: typeof Schema.String; Addr: typeof Schema.String; Name: typeof Schema.String; Cpus: MobySchemas.Int64Schemas.$Int64; Memory: MobySchemas.Int64Schemas.$Int64; Labels: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>; }>, never, { readonly ID: string; } & { readonly Name: string; } & { readonly Labels: { readonly [x: string]: string; } | null; } & { readonly Memory: MobySchemas.Int64Schemas.Int64Brand; } & { readonly IP: string; } & { readonly Addr: string; } & { readonly Cpus: MobySchemas.Int64Schemas.Int64Brand; }, {}, {}>; export declare class ContainerNode extends ContainerNode_base { } export {}; //# sourceMappingURL=ContainerNode.generated.d.ts.map