UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

29 lines (22 loc) 635 B
/// <reference types="node" /> import type { Headers } from './fetch' export interface Cookie { name: string value: string expires?: Date | number maxAge?: number domain?: string path?: string secure?: boolean httpOnly?: boolean sameSite?: 'Strict' | 'Lax' | 'None' unparsed?: string[] } export function deleteCookie ( headers: Headers, name: string, attributes?: { name?: string, domain?: string } ): void export function getCookies (headers: Headers): Record<string, string> export function getSetCookies (headers: Headers): Cookie[] export function setCookie (headers: Headers, cookie: Cookie): void