the-moby-effect
Version:
Moby/Docker API client built using effect-ts
34 lines • 1.21 kB
TypeScript
import * as Schema from "effect/Schema";
declare const SystemRuntime_base: Schema.Class<SystemRuntime, {
path: Schema.optional<typeof Schema.String>;
runtimeArgs: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
nullable: true;
}>;
runtimeType: Schema.optional<typeof Schema.String>;
options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.Object>, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
path: Schema.optional<typeof Schema.String>;
runtimeArgs: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
nullable: true;
}>;
runtimeType: Schema.optional<typeof Schema.String>;
options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.Object>, {
nullable: true;
}>;
}>, never, {
readonly path?: string | undefined;
} & {
readonly runtimeArgs?: readonly string[] | undefined;
} & {
readonly runtimeType?: string | undefined;
} & {
readonly options?: {
readonly [x: string]: object;
} | undefined;
}, {}, {}>;
export declare class SystemRuntime extends SystemRuntime_base {
}
export {};
//# sourceMappingURL=SystemRuntime.generated.d.ts.map