mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
express-flash just implements connenct-flash so there is no need to define anything beside the single RequestHandler function that it exports.
12 lines
390 B
TypeScript
12 lines
390 B
TypeScript
// Type definitions for express-flash 0.0
|
|
// Project: https://github.com/RGBboy/express-flash
|
|
// Definitions by: Ian Mobley <https://github.com/iMobs>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
/// <reference types="connect-flash" />
|
|
|
|
import express = require('express');
|
|
declare function flash(): express.RequestHandler;
|
|
export = flash;
|