mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import * as express from 'express';
|
|
import Template from './src/runtime/html/Template';
|
|
|
|
declare module 'express-serve-static-core' {
|
|
interface Response {
|
|
marko(template: Template, data?: any): void;
|
|
}
|
|
}
|
|
|
|
export = express;
|