the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 811 B
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const SwarmSeccompOpts_base: Schema.Class<SwarmSeccompOpts, {
Mode: Schema.optional<typeof Schema.String>;
Profile: Schema.optionalWith<Schema.Array$<MobySchemas.UInt8Schemas.$UInt8>, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
Mode: Schema.optional<typeof Schema.String>;
Profile: Schema.optionalWith<Schema.Array$<MobySchemas.UInt8Schemas.$UInt8>, {
nullable: true;
}>;
}>, never, {
readonly Mode?: string | undefined;
} & {
readonly Profile?: readonly MobySchemas.UInt8Schemas.UInt8Brand[] | undefined;
}, {}, {}>;
export declare class SwarmSeccompOpts extends SwarmSeccompOpts_base {
}
export {};
//# sourceMappingURL=SwarmSeccompOpts.generated.d.ts.map