UNPKG

kequapp

Version:

DEPRECATED: renamed to @kequtech/arbor

5 lines (4 loc) 320 B
import type { IncomingMessage, ServerResponse } from 'node:http'; import type { Cookies } from '../types.ts'; import type { FakeReq, FakeRes } from '../utils/fake-http.ts'; export declare function createCookies(req: Pick<IncomingMessage | FakeReq, 'headers'>, res: Pick<ServerResponse | FakeRes, 'setHeader'>): Cookies;