the-moby-effect
Version:
Moby/Docker API client built using effect-ts
18 lines (16 loc) • 672 B
text/typescript
import * as Schema from "effect/Schema";
export class TypesPluginConfigInterface extends Schema.Class<TypesPluginConfigInterface>("TypesPluginConfigInterface")(
{
ProtocolScheme: Schema.optional(Schema.String),
Socket: Schema.String,
Types: Schema.NullOr(
Schema.Array(Schema.NullOr(Schema.TemplateLiteral([Schema.String, ".", Schema.String, "/", Schema.String])))
),
},
{
identifier: "TypesPluginConfigInterface",
title: "types.PluginConfigInterface",
documentation:
"https://pkg.go.dev/github.com/docker/docker@v28.4.0+incompatible/api/types#PluginConfigInterface",
}
) {}