the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 873 B
TypeScript
import * as Schema from "effect/Schema";
import * as NetworkEndpointSettings from "./NetworkEndpointSettings.generated.js";
declare const NetworkConnectOptions_base: Schema.Class<NetworkConnectOptions, {
Container: typeof Schema.String;
EndpointConfig: Schema.optionalWith<typeof NetworkEndpointSettings.NetworkEndpointSettings, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
Container: typeof Schema.String;
EndpointConfig: Schema.optionalWith<typeof NetworkEndpointSettings.NetworkEndpointSettings, {
nullable: true;
}>;
}>, never, {
readonly Container: string;
} & {
readonly EndpointConfig?: NetworkEndpointSettings.NetworkEndpointSettings | undefined;
}, {}, {}>;
export declare class NetworkConnectOptions extends NetworkConnectOptions_base {
}
export {};
//# sourceMappingURL=NetworkConnectOptions.generated.d.ts.map