mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
372 B
TypeScript
10 lines
372 B
TypeScript
// Type definitions for express-version-route 1.0
|
|
// Project: https://github.com/lirantal/express-version-route
|
|
// Definitions by: Rogelio Negrete <https://github.com/weffe>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
import { Handler } from 'express';
|
|
|
|
export function route(versionsMap: Map<string, Handler>): Handler;
|