UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

19 lines (18 loc) 572 B
import { z } from 'zod'; export declare const HttpCache: z.ZodCatch<z.ZodNullable<z.ZodObject<{ etag: z.ZodOptional<z.ZodString>; lastModified: z.ZodOptional<z.ZodString>; httpResponse: z.ZodUnknown; timestamp: z.ZodString; }, "strip", z.ZodTypeAny, { timestamp: string; etag?: string | undefined; lastModified?: string | undefined; httpResponse?: unknown; }, { timestamp: string; etag?: string | undefined; lastModified?: string | undefined; httpResponse?: unknown; }>>>; export type HttpCache = z.infer<typeof HttpCache>;