renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
19 lines (18 loc) • 584 B
TypeScript
import { z } from 'zod';
export declare const HttpCacheSchema: 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 HttpCacheSchema>;