the-moby-effect
Version:
Moby/Docker API client built using effect-ts
41 lines • 1.46 kB
TypeScript
import * as Schema from "effect/Schema";
import * as SwarmConfigSpec from "./SwarmConfigSpec.generated.js";
declare const SwarmConfig_base: Schema.Class<SwarmConfig, {
Spec: Schema.NullOr<typeof SwarmConfigSpec.SwarmConfigSpec>;
Version: Schema.optionalWith<typeof import("./SwarmVersion.generated.js").SwarmVersion, {
nullable: true;
}>;
CreatedAt: Schema.optionalWith<typeof Schema.DateFromString, {
nullable: true;
}>;
UpdatedAt: Schema.optionalWith<typeof Schema.DateFromString, {
nullable: true;
}>;
ID: typeof Schema.String;
}, Schema.Struct.Encoded<{
Spec: Schema.NullOr<typeof SwarmConfigSpec.SwarmConfigSpec>;
Version: Schema.optionalWith<typeof import("./SwarmVersion.generated.js").SwarmVersion, {
nullable: true;
}>;
CreatedAt: Schema.optionalWith<typeof Schema.DateFromString, {
nullable: true;
}>;
UpdatedAt: Schema.optionalWith<typeof Schema.DateFromString, {
nullable: true;
}>;
ID: typeof Schema.String;
}>, never, {
readonly ID: string;
} & {
readonly CreatedAt?: Date | undefined;
} & {
readonly Version?: import("./SwarmVersion.generated.js").SwarmVersion | undefined;
} & {
readonly UpdatedAt?: Date | undefined;
} & {
readonly Spec: SwarmConfigSpec.SwarmConfigSpec | null;
}, {}, {}>;
export declare class SwarmConfig extends SwarmConfig_base {
}
export {};
//# sourceMappingURL=SwarmConfig.generated.d.ts.map