DefinitelyTyped/types/express-partials/index.d.ts
Andy 954ee278de
Update TypeScript Versions to be at least as high as dependencies' versions (#21288)
* Update `TypeScript Version`s to be at least as high as dependencies' versions

* Run through again
2017-11-08 09:12:14 -08:00

15 lines
389 B
TypeScript

// Type definitions for express-partials
// Project: https://github.com/publicclass/express-partials
// Definitions by: jt000 <https://github.com/jt000>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
import express = require('express');
declare function expressPartials(options?: any): express.RequestHandler;
export = expressPartials;