mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 08:17:54 +08:00
8 lines
238 B
TypeScript
8 lines
238 B
TypeScript
/// <reference path="../express/express.d.ts" />
|
|
/// <reference path="ejs-locals.d.ts" />
|
|
|
|
import express = require('express');
|
|
import ejsLocals = require('ejs-locals');
|
|
|
|
var app: express.Express = express();
|
|
app.engine('ejs', ejsLocals); |