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