the-moby-effect
Version:
Moby/Docker API client built using effect-ts
25 lines • 912 B
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const HealthcheckResult_base: Schema.Class<HealthcheckResult, {
Start: Schema.NullOr<typeof Schema.DateFromString>;
End: Schema.NullOr<typeof Schema.DateFromString>;
ExitCode: MobySchemas.Int64Schemas.$Int64;
Output: typeof Schema.String;
}, Schema.Struct.Encoded<{
Start: Schema.NullOr<typeof Schema.DateFromString>;
End: Schema.NullOr<typeof Schema.DateFromString>;
ExitCode: MobySchemas.Int64Schemas.$Int64;
Output: typeof Schema.String;
}>, never, {
readonly ExitCode: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly Output: string;
} & {
readonly Start: Date | null;
} & {
readonly End: Date | null;
}, {}, {}>;
export declare class HealthcheckResult extends HealthcheckResult_base {
}
export {};
//# sourceMappingURL=HealthcheckResult.generated.d.ts.map