the-moby-effect
Version:
Moby/Docker API client built using effect-ts
40 lines • 1.18 kB
TypeScript
import * as Schema from "effect/Schema";
declare const ContainerLogsOptions_base: Schema.Class<ContainerLogsOptions, {
ShowStdout: typeof Schema.Boolean;
ShowStderr: typeof Schema.Boolean;
Since: typeof Schema.String;
Until: typeof Schema.String;
Timestamps: typeof Schema.Boolean;
Follow: typeof Schema.Boolean;
Tail: typeof Schema.String;
Details: typeof Schema.Boolean;
}, Schema.Struct.Encoded<{
ShowStdout: typeof Schema.Boolean;
ShowStderr: typeof Schema.Boolean;
Since: typeof Schema.String;
Until: typeof Schema.String;
Timestamps: typeof Schema.Boolean;
Follow: typeof Schema.Boolean;
Tail: typeof Schema.String;
Details: typeof Schema.Boolean;
}>, never, {
readonly Details: boolean;
} & {
readonly ShowStdout: boolean;
} & {
readonly ShowStderr: boolean;
} & {
readonly Since: string;
} & {
readonly Until: string;
} & {
readonly Timestamps: boolean;
} & {
readonly Follow: boolean;
} & {
readonly Tail: string;
}, {}, {}>;
export declare class ContainerLogsOptions extends ContainerLogsOptions_base {
}
export {};
//# sourceMappingURL=ContainerLogsOptions.generated.d.ts.map