mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-25 16:11:24 +08:00
14 lines
477 B
TypeScript
14 lines
477 B
TypeScript
// Type definitions for express-route-fs v0.1.0
|
|
// Project: https://github.com/kripod/express-route-fs
|
|
// Definitions by: Kristóf Poduszló <https://github.com/kripod>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
/**
|
|
Sets up file system-based routing in Express.
|
|
@param {Object} app Express application object.
|
|
@param {Object[]} [options] Options for setting up routes.
|
|
*/
|
|
declare function routeFs(app: any, options?: any): void;
|
|
export = routeFs;
|