the-moby-effect
Version:
Moby/Docker API client built using effect-ts
33 lines • 1.44 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const JSONProgress_base: Schema.Class<JSONProgress, {
current: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
total: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
start: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
hidecounts: Schema.optional<typeof Schema.Boolean>;
units: Schema.optional<typeof Schema.String>;
winSize: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
}, Schema.Struct.Encoded<{
current: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
total: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
start: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
hidecounts: Schema.optional<typeof Schema.Boolean>;
units: Schema.optional<typeof Schema.String>;
winSize: Schema.optional<MobySchemas.Int64Schemas.$Int64>;
}>, never, {
readonly current?: MobySchemas.Int64Schemas.Int64Brand | undefined;
} & {
readonly start?: MobySchemas.Int64Schemas.Int64Brand | undefined;
} & {
readonly total?: MobySchemas.Int64Schemas.Int64Brand | undefined;
} & {
readonly hidecounts?: boolean | undefined;
} & {
readonly units?: string | undefined;
} & {
readonly winSize?: MobySchemas.Int64Schemas.Int64Brand | undefined;
}, {}, {}>;
export declare class JSONProgress extends JSONProgress_base {
}
export {};
//# sourceMappingURL=JSONProgress.generated.d.ts.map