renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
14 lines • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpCache = void 0;
const zod_1 = require("zod");
exports.HttpCache = zod_1.z
.object({
etag: zod_1.z.string().optional(),
lastModified: zod_1.z.string().optional(),
httpResponse: zod_1.z.unknown(),
timestamp: zod_1.z.string(),
})
.nullable()
.catch(null);
//# sourceMappingURL=schema.js.map