8.0.3 • Published 6 months ago

@types/express-busboy v8.0.3

Weekly downloads
307
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for express-busboy 8.0
// Project: https://github.com/yahoo/express-busboy
// Definitions by: Pinguet62 <https://github.com/pinguet62>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

import * as connectBusboy from 'connect-busboy';
import * as express from '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

Credits

These definitions were written by Pinguet62.

8.0.1

8 months ago

8.0.3

6 months ago

8.0.2

7 months ago

8.0.0

3 years ago

6.0.3

3 years ago

6.0.2

5 years ago

6.0.1

5 years ago

6.0.0

6 years ago