mongodb-stitch
Version:
[](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
12 lines (11 loc) • 569 B
TypeScript
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);
}