UNPKG

alagarr

Version:

Alagarr is a request-response helper library that removes the boilerplate from your Node.js serverless functions and helps make your code portable.

6 lines (5 loc) 199 B
import { InterfaceRequest } from '../../types'; export interface InterfaceCookie { readonly [key: string]: string; } export default function cookies(request: InterfaceRequest): InterfaceRequest;