# Installation
> `npm install --save @types/express-busboy`

# Summary
This package contains type definitions for express-busboy (https://github.com/yahoo/express-busboy).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-busboy.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-busboy/index.d.ts)
````ts
import connectBusboy = require("connect-busboy");
import express = require("express");

export interface ExpressBusboyOptions extends connectBusboy.ConnectBusboyOptions {
    upload?: boolean;
    path?: string;
    allowedPath?: string | RegExp | ((url: string) => boolean);
    restrictMultiple?: boolean;
    mimeTypeLimit?: string | string[];
    strip?: (value: string, type?: string) => string;
}

export function extend(app: express.Application, options?: ExpressBusboyOptions): express.Application;

````

### Additional Details
 * Last updated: Fri, 24 Oct 2025 04:02:41 GMT
 * Dependencies: [@types/connect-busboy](https://npmjs.com/package/@types/connect-busboy), [@types/express](https://npmjs.com/package/@types/express)

# Credits
These definitions were written by [Pinguet62](https://github.com/pinguet62).
