the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 626 B
TypeScript
import * as Schema from "effect/Schema";
export declare enum ContainerChangeKind {
Modify = 0,
Add = 1,
Delete = 2
}
declare const ContainerChange_base: Schema.Class<ContainerChange, {
Path: typeof Schema.String;
Kind: Schema.Enums<typeof ContainerChangeKind>;
}, Schema.Struct.Encoded<{
Path: typeof Schema.String;
Kind: Schema.Enums<typeof ContainerChangeKind>;
}>, never, {
readonly Path: string;
} & {
readonly Kind: ContainerChangeKind;
}, {}, {}>;
export declare class ContainerChange extends ContainerChange_base {
}
export {};
//# sourceMappingURL=ContainerChange.generated.d.ts.map