mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-02 19:34:31 +08:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import express = require('express');
|
|
import expressEjsLayouts = require('express-ejs-layouts');
|
|
|
|
function expressRequestHandlerTest() {
|
|
const app = express()
|
|
.use(expressEjsLayouts());
|
|
}
|