the-moby-effect
Version:
Moby/Docker API client built using effect-ts
20 lines (18 loc) • 577 B
text/typescript
import * as Schema from "effect/Schema";
export class GraphDriverData extends Schema.Class<GraphDriverData>("GraphDriverData")(
{
Data: Schema.NullOr(
Schema.Record({
key: Schema.String,
value: Schema.String,
})
),
Name: Schema.String,
},
{
identifier: "GraphDriverData",
title: "types.GraphDriverData",
documentation:
"https://github.com/moby/moby/blob/733755d7cb18a4dbea7c290cc56e61d05502aca0/api/types/storage/driver_data.go#L3-L23",
}
) {}