UNPKG

mongodb-stitch

Version:

[![Join the chat at https://gitter.im/mongodb/stitch](https://badges.gitter.im/mongodb/stitch.svg)](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

12 lines (11 loc) 569 B
export default class HttpCookie { readonly name: string; readonly value: string; readonly path?: string | undefined; readonly domain?: string | undefined; readonly expires?: string | undefined; readonly maxAge?: number | undefined; readonly secure?: boolean | undefined; readonly httpOnly?: boolean | undefined; constructor(name: string, value: string, path?: string | undefined, domain?: string | undefined, expires?: string | undefined, maxAge?: number | undefined, secure?: boolean | undefined, httpOnly?: boolean | undefined); }