the-moby-effect
Version:
Moby/Docker API client built using effect-ts
30 lines • 939 B
TypeScript
import * as Schema from "effect/Schema";
declare const SwarmExternalCA_base: Schema.Class<SwarmExternalCA, {
Protocol: typeof Schema.String;
URL: typeof Schema.String;
Options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
CACert: typeof Schema.String;
}, Schema.Struct.Encoded<{
Protocol: typeof Schema.String;
URL: typeof Schema.String;
Options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
CACert: typeof Schema.String;
}>, never, {
readonly Options?: {
readonly [x: string]: string;
} | undefined;
} & {
readonly Protocol: string;
} & {
readonly URL: string;
} & {
readonly CACert: string;
}, {}, {}>;
export declare class SwarmExternalCA extends SwarmExternalCA_base {
}
export {};
//# sourceMappingURL=SwarmExternalCA.generated.d.ts.map