mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
7 lines
259 B
TypeScript
7 lines
259 B
TypeScript
import * as expressBusboy from 'express-busboy';
|
|
import express = require('express');
|
|
|
|
const app: express.Application = express();
|
|
const options: expressBusboy.ExpressBusboyOptions = {};
|
|
const result: express.Application = expressBusboy.extend(app, options);
|