Files
DefinitelyTyped/express-partials/express-partials.d.ts
2014-12-23 15:29:23 -05:00

14 lines
446 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/borisyankov/DefinitelyTyped
/// <reference path="../express/express.d.ts" />
declare module "express-partials" {
import express = require('express');
function expressPartials(options?: any): express.RequestHandler;
export = expressPartials;
}