// Type definitions for falcor-express 0.1.2 // Project: https://github.com/Netflix/falcor-express // Definitions by: Quramy // Definitions: https://github.com/borisyankov/DefinitelyTyped /// /// declare module 'falcor-express' { import {Request, Response, Handler} from 'express'; import {DataSource} from 'falcor'; function dataSourceRoute(getDataSource: (req: Request, res: Response) => DataSource): Handler; }