the-moby-effect
Version:
Moby/Docker API client built using effect-ts
29 lines • 1 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const RegistrySearchResponse_base: Schema.Class<RegistrySearchResponse, {
star_count: MobySchemas.Int64Schemas.$Int64;
is_official: typeof Schema.Boolean;
name: typeof Schema.String;
is_automated: typeof Schema.Boolean;
description: typeof Schema.String;
}, Schema.Struct.Encoded<{
star_count: MobySchemas.Int64Schemas.$Int64;
is_official: typeof Schema.Boolean;
name: typeof Schema.String;
is_automated: typeof Schema.Boolean;
description: typeof Schema.String;
}>, never, {
readonly description: string;
} & {
readonly name: string;
} & {
readonly star_count: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly is_official: boolean;
} & {
readonly is_automated: boolean;
}, {}, {}>;
export declare class RegistrySearchResponse extends RegistrySearchResponse_base {
}
export {};
//# sourceMappingURL=RegistrySearchResponse.generated.d.ts.map