the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 1.03 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const ContainerPidsStats_base: Schema.Class<ContainerPidsStats, {
/** Current is the number of pids in the cgroup */
current: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
/** Limit is the hard limit on the number of pids in the cgroup. */
limit: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
}, Schema.Struct.Encoded<{
/** Current is the number of pids in the cgroup */
current: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
/** Limit is the hard limit on the number of pids in the cgroup. */
limit: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
}>, never, {
readonly limit?: MobySchemas.UInt64Schemas.UInt64Brand | undefined;
} & {
readonly current?: MobySchemas.UInt64Schemas.UInt64Brand | undefined;
}, {}, {}>;
export declare class ContainerPidsStats extends ContainerPidsStats_base {
}
export {};
//# sourceMappingURL=ContainerPidsStats.generated.d.ts.map