mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
15 lines
534 B
TypeScript
15 lines
534 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
|
|
|
|
declare module "express-route-fs" {
|
|
/**
|
|
Sets up file system-based routing in Express.
|
|
@param {Object} app Express application object.
|
|
@param {Object[]} [options] Options for setting up routes.
|
|
*/
|
|
function routeFs(app: any, options?: any): void;
|
|
export = routeFs;
|
|
}
|