mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
432 B
TypeScript
12 lines
432 B
TypeScript
// Type definitions for cookie-parser
|
|
// Project: https://github.com/expressjs/cookie-parser
|
|
// Definitions by: Santi Albo <https://github.com/santialbo/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../express/express.d.ts" />
|
|
|
|
declare module "cookie-parser" {
|
|
import express = require('express');
|
|
function e(secret?: string, options?: any): express.RequestHandler;
|
|
export = e;
|
|
} |