UNPKG

remix-utils

Version:

This package contains simple utility functions to use with [React Router](https://reactrouter.com/).

5 lines (4 loc) 288 B
import type { Cookie } from "react-router"; import { z } from "zod"; import type { TypedCookie } from "./typed-cookie.js"; export declare function rollingCookie<Schema extends z.ZodTypeAny>(cookie: Cookie | TypedCookie<Schema>, request: Request, responseHeaders: Headers): Promise<void>;