the-moby-effect
Version:
Moby/Docker API client built using effect-ts
24 lines • 800 B
TypeScript
import * as Schema from "effect/Schema";
declare const RegistryIndexInfo_base: Schema.Class<RegistryIndexInfo, {
Name: typeof Schema.String;
Mirrors: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
Secure: typeof Schema.Boolean;
Official: typeof Schema.Boolean;
}, Schema.Struct.Encoded<{
Name: typeof Schema.String;
Mirrors: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
Secure: typeof Schema.Boolean;
Official: typeof Schema.Boolean;
}>, never, {
readonly Name: string;
} & {
readonly Secure: boolean;
} & {
readonly Official: boolean;
} & {
readonly Mirrors: readonly string[] | null;
}, {}, {}>;
export declare class RegistryIndexInfo extends RegistryIndexInfo_base {
}
export {};
//# sourceMappingURL=RegistryIndexInfo.generated.d.ts.map