the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 736 B
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const ContainerUlimit_base: Schema.Class<ContainerUlimit, {
Name: typeof Schema.String;
Hard: MobySchemas.Int64Schemas.$Int64;
Soft: MobySchemas.Int64Schemas.$Int64;
}, Schema.Struct.Encoded<{
Name: typeof Schema.String;
Hard: MobySchemas.Int64Schemas.$Int64;
Soft: MobySchemas.Int64Schemas.$Int64;
}>, never, {
readonly Name: string;
} & {
readonly Hard: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly Soft: MobySchemas.Int64Schemas.Int64Brand;
}, {}, {}>;
export declare class ContainerUlimit extends ContainerUlimit_base {
}
export {};
//# sourceMappingURL=ContainerUlimit.generated.d.ts.map