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