the-moby-effect
Version:
Moby/Docker API client built using effect-ts
26 lines • 847 B
TypeScript
import * as Schema from "effect/Schema";
declare const NetworkTask_base: Schema.Class<NetworkTask, {
Name: typeof Schema.String;
EndpointID: typeof Schema.String;
EndpointIP: typeof Schema.String;
Info: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
}, Schema.Struct.Encoded<{
Name: typeof Schema.String;
EndpointID: typeof Schema.String;
EndpointIP: typeof Schema.String;
Info: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
}>, never, {
readonly Info: {
readonly [x: string]: string;
} | null;
} & {
readonly Name: string;
} & {
readonly EndpointID: string;
} & {
readonly EndpointIP: string;
}, {}, {}>;
export declare class NetworkTask extends NetworkTask_base {
}
export {};
//# sourceMappingURL=NetworkTask.generated.d.ts.map