mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Update `TypeScript Version`s to be at least as high as dependencies' versions * Run through again
15 lines
389 B
TypeScript
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;
|