Files
DefinitelyTyped/express-route-fs/index.d.ts
2016-04-27 21:30:22 -07:00

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;