Socket
Socket
Sign inDemoInstall

@types/express-busboy

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/express-busboy - npm Package Compare versions

Comparing version 6.0.2 to 6.0.3

10

express-busboy/index.d.ts

@@ -11,9 +11,9 @@ // Type definitions for express-busboy 6.0

export interface ExpressBusboyOptions extends connectBusboy.ConnectBusboyOptions {
upload?: boolean;
path?: string;
allowedPath?: string | RegExp | ((url: string) => boolean);
restrictMultiple?: boolean;
mimeTypeLimit?: string | string[];
upload?: boolean | undefined;
path?: string | undefined;
allowedPath?: string | RegExp | ((url: string) => boolean) | undefined;
restrictMultiple?: boolean | undefined;
mimeTypeLimit?: string | string[] | undefined;
}
export function extend(app: express.Application, options?: ExpressBusboyOptions): express.Application;
{
"name": "@types/express-busboy",
"version": "6.0.2",
"version": "6.0.3",
"description": "TypeScript definitions for express-busboy",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-busboy",
"license": "MIT",

@@ -14,3 +15,3 @@ "contributors": [

"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {

@@ -26,4 +27,4 @@ "type": "git",

},
"typesPublisherContentHash": "32c645f904c91f4fe6ce8f3cb88eed51250d3b200681108f97f891118cad90d3",
"typeScriptVersion": "2.3"
"typesPublisherContentHash": "2686daf073bb5548f4f890fb450324e125fca35678d36fe779647f36b5e611f1",
"typeScriptVersion": "3.6"
}

@@ -8,10 +8,32 @@ # Installation

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-busboy
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
// Type definitions for express-busboy 6.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
Additional Details
* Last updated: Mon, 19 Aug 2019 00:51:12 GMT
* Dependencies: @types/connect-busboy, @types/express
import * as connectBusboy from 'connect-busboy';
import * as express from 'express';
export interface ExpressBusboyOptions extends connectBusboy.ConnectBusboyOptions {
upload?: boolean | undefined;
path?: string | undefined;
allowedPath?: string | RegExp | ((url: string) => boolean) | undefined;
restrictMultiple?: boolean | undefined;
mimeTypeLimit?: string | string[] | undefined;
}
export function extend(app: express.Application, options?: ExpressBusboyOptions): express.Application;
````
### Additional Details
* Last updated: Thu, 08 Jul 2021 12:01:17 GMT
* Dependencies: [@types/connect-busboy](https://npmjs.com/package/@types/connect-busboy), [@types/express](https://npmjs.com/package/@types/express)
* Global values: none
# Credits
These definitions were written by Pinguet62 <https://github.com/pinguet62>.
These definitions were written by [Pinguet62](https://github.com/pinguet62).

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc