mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
add definitions for express-unless
This commit is contained in:
12
express-unless/express-unless-tests.ts
Normal file
12
express-unless/express-unless-tests.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
/// <reference path="./express-unless.d.ts" />
|
||||
|
||||
import express = require('express');
|
||||
import unless = require('express-unless');
|
||||
|
||||
var app = express();
|
||||
|
||||
var middleware:unless.RequestHandler = function (req, res, next) {
|
||||
next();
|
||||
}
|
||||
middleware.unless = unless;
|
||||
app.use(middleware.unless({ method: 'OPTIONS' }));
|
||||
26
express-unless/express-unless.d.ts
vendored
Normal file
26
express-unless/express-unless.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
// Type definitions for express-unless
|
||||
// Project: https://www.npmjs.org/package/express-unless
|
||||
// Definitions by: Wonshik Kim <https://github.com/wokim/>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../express/express.d.ts" />
|
||||
|
||||
declare module "express-unless" {
|
||||
import express = require('express');
|
||||
|
||||
function unless(options:unless.Options): express.RequestHandler;
|
||||
|
||||
module unless {
|
||||
export interface Options {
|
||||
custom?: (req: express.Request) => boolean;
|
||||
path?: any; // TODO: union type 'string|string[]' is not supported yet
|
||||
ext?: any; // TODO: union type 'string|string[]' is not supported yet
|
||||
method?: any; // TODO: union type 'string|string[]' is not supported yet
|
||||
}
|
||||
export interface RequestHandler extends express.RequestHandler {
|
||||
unless?: typeof unless;
|
||||
}
|
||||
}
|
||||
|
||||
export = unless;
|
||||
}
|
||||
Reference in New Issue
Block a user