UNPKG

@scalar/openapi-types

Version:
21 lines 731 B
/** * Contact Object * * Contact information for the exposed API. * * @see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.1.md#contact-object */ export declare const ContactObjectSchema: import("zod").ZodObject<{ name: import("zod").ZodOptional<import("zod").ZodString>; url: import("zod").ZodCatch<import("zod").ZodOptional<import("zod").ZodString>>; email: import("zod").ZodCatch<import("zod").ZodOptional<import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { url?: string | undefined; name?: string | undefined; email?: string | undefined; }, { url?: unknown; name?: string | undefined; email?: unknown; }>; //# sourceMappingURL=contact-object.d.ts.map