the-moby-effect
Version:
Moby/Docker API client built using effect-ts
14 lines (12 loc) • 380 B
text/typescript
import * as Schema from "effect/Schema";
export class MountDriver extends Schema.Class<MountDriver>("MountDriver")(
{
Name: Schema.optional(Schema.String),
Options: Schema.optional(Schema.NullOr(Schema.Record(Schema.String, Schema.String))),
},
{
identifier: "MountDriver",
title: "mount.Driver",
documentation: "",
}
) {}