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
17 lines
461 B
TypeScript
17 lines
461 B
TypeScript
// Type definitions for express-ejs-layouts 2.3
|
|
// Project: https://github.com/Soarez/express-ejs-layouts
|
|
// Definitions by: Erik Mavrinac <https://github.com/erikma>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
/// <reference types="node" />
|
|
|
|
import { RequestHandler } from 'express';
|
|
|
|
declare function expressEjsLayouts(): RequestHandler;
|
|
|
|
declare namespace expressEjsLayouts {
|
|
}
|
|
|
|
export = expressEjsLayouts;
|