UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

9 lines (8 loc) 344 B
type Cookie = { name: string; value: string; }; export declare const MAX_COOKIE_LENGTH = 4096; export declare function chunkCookieValue(cookieName: string, cookieValue: string, maxLength?: number): Array<Cookie>; export declare function parseChunkedCookies(cookieName: string, allCookies: Array<Cookie>): string | undefined; export {};