@types/cookie-parser
TypeScript definitions for cookie-parser
Last updated 4 years ago by types .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install @types/cookie-parser 
SYNC missed versions from official npm registry.

Installation

npm install --save @types/cookie-parser

Summary

This package contains type definitions for cookie-parser (https://github.com/expressjs/cookie-parser).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cookie-parser.

index.d.ts

// Type definitions for cookie-parser 1.4
// Project: https://github.com/expressjs/cookie-parser
// Definitions by: Santi Albo <https://github.com/santialbo>
//                 BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

import * as express from 'express';

declare global {
    namespace Express {
        // Inject additional properties on express.Request
        interface Request {
            /**
             * This request's secret.
             * Optionally set by cookie-parser if secret(s) are provided.  Can be used by other middleware.
             * [Declaration merging](https://www.typescriptlang.org/docs/handbook/declaration-merging.html) can be used to add your own properties.
             */
            secret?: string;
        }
    }
}

declare function cookieParser(secret?: string | string[], options?: cookieParser.CookieParseOptions): express.RequestHandler;

declare namespace cookieParser {
    interface CookieParseOptions {
        decode?(val: string): string;
    }

    function JSONCookie(jsonCookie: string): object | undefined;

    function JSONCookies<T extends { [key: string]: string }>(jsonCookies: T): { [P in keyof T]: object | undefined };

    function signedCookie(cookie: string, secret: string | string[]): string | false;

    function signedCookies<T extends { [key: string]: string }>(cookies: T, secret: string | string[]): { [P in keyof T]?: string | false};
}

export = cookieParser;

Additional Details

  • Last updated: Wed, 27 Apr 2022 10:31:34 GMT
  • Dependencies: @types/express
  • Global values: none

Credits

These definitions were written by Santi Albo, and BendingBender.

Current Tags

  • 1.4.3                                ...           latest (4 years ago)
  • 1.3.30                                ...           ts2.0 (10 years ago)
  • 1.3.30                                ...           ts2.1 (10 years ago)
  • 1.4.1                                ...           ts2.2 (9 years ago)
  • 1.4.2                                ...           ts2.3 (7 years ago)
  • 1.4.2                                ...           ts2.4 (7 years ago)
  • 1.4.2                                ...           ts2.5 (7 years ago)
  • 1.4.2                                ...           ts2.6 (7 years ago)
  • 1.4.2                                ...           ts2.7 (7 years ago)
  • 1.4.2                                ...           ts2.8 (7 years ago)
  • 1.4.2                                ...           ts2.9 (7 years ago)
  • 1.4.2                                ...           ts3.0 (7 years ago)
  • 1.4.2                                ...           ts3.1 (7 years ago)
  • 1.4.2                                ...           ts3.2 (7 years ago)
  • 1.4.2                                ...           ts3.3 (7 years ago)
  • 1.4.2                                ...           ts3.4 (7 years ago)
  • 1.4.2                                ...           ts3.5 (7 years ago)
  • 1.4.2                                ...           ts3.6 (7 years ago)
  • 1.4.2                                ...           ts3.7 (7 years ago)
  • 1.4.2                                ...           ts3.8 (7 years ago)
  • 1.4.3                                ...           ts3.9 (4 years ago)
  • 1.4.3                                ...           ts4.0 (4 years ago)
  • 1.4.3                                ...           ts4.1 (4 years ago)
  • 1.4.3                                ...           ts4.2 (4 years ago)
  • 1.4.3                                ...           ts4.3 (4 years ago)
  • 1.4.3                                ...           ts4.4 (4 years ago)
  • 1.4.3                                ...           ts4.5 (4 years ago)
  • 1.4.3                                ...           ts4.6 (4 years ago)
  • 1.4.3                                ...           ts4.7 (4 years ago)
  • 1.4.3                                ...           ts4.8 (4 years ago)
  • 1.4.3                                ...           ts4.9 (4 years ago)

15 Versions

  • 1.4.3                                ...           4 years ago
  • 1.4.2                                ...           7 years ago
  • 1.4.1                                ...           9 years ago
  • 1.4.0                                ...           9 years ago
  • 1.3.30                                ...           10 years ago
  • 1.3.29                                ...           10 years ago
  • 1.3.28-alpha                                ...           10 years ago
  • 1.3.27-alpha                                ...           10 years ago
  • 1.3.26-alpha                                ...           10 years ago
  • 1.3.25-alpha                                ...           10 years ago
  • 1.3.24-alpha                                ...           10 years ago
  • 1.3.23-alpha                                ...           10 years ago
  • 1.3.22-alpha                                ...           10 years ago
  • 1.3.17-alpha                                ...           10 years ago
  • 1.3.16-alpha                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org | Home |