@types/greasemonkey
Advanced tools
Comparing version 4.0.1 to 4.0.2
@@ -18,3 +18,3 @@ // Type definitions for Greasemonkey 4.x | ||
name: string; | ||
namespace?: string; | ||
namespace?: string | undefined; | ||
/** | ||
@@ -44,3 +44,3 @@ * An object keyed by resource name. | ||
/** The same object passed into the original request */ | ||
readonly context?: TContext; | ||
readonly context?: TContext | undefined; | ||
@@ -84,3 +84,3 @@ readonly readyState: 1 | 2 | 3 | 4; | ||
*/ | ||
binary?: boolean; | ||
binary?: boolean | undefined; | ||
/** | ||
@@ -90,3 +90,3 @@ * Any object (Compatibility: 1.10+). This object will also be the | ||
*/ | ||
context?: TContext; | ||
context?: TContext | undefined; | ||
/** | ||
@@ -98,7 +98,7 @@ * Data to send in the request body. Usually for POST method requests. | ||
*/ | ||
data?: string; | ||
data?: string | undefined; | ||
/** A set of headers to include in the request */ | ||
headers?: { | ||
[header: string]: string | ||
}; | ||
} | undefined; | ||
/** | ||
@@ -108,7 +108,7 @@ * A MIME type to specify with the request (e.g. | ||
*/ | ||
overrideMimeType?: string; | ||
overrideMimeType?: string | undefined; | ||
/** User name to use for authentication purposes. */ | ||
user?: string; | ||
user?: string | undefined; | ||
/** Password to use for authentication purposes */ | ||
password?: string; | ||
password?: string | undefined; | ||
/** | ||
@@ -120,3 +120,3 @@ * When `true`, this is a synchronous request. | ||
*/ | ||
synchronous?: boolean; | ||
synchronous?: boolean | undefined; | ||
/** | ||
@@ -126,3 +126,3 @@ * The number of milliseconds to wait before terminating the call. Zero | ||
*/ | ||
timeout?: number; | ||
timeout?: number | undefined; | ||
/** | ||
@@ -137,3 +137,3 @@ * Object containing optional function callbacks to monitor the upload | ||
onprogress?(response: ProgressResponse<TContext>): void | ||
}; | ||
} | undefined; | ||
@@ -140,0 +140,0 @@ // Event handlers |
{ | ||
"name": "@types/greasemonkey", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "TypeScript definitions for Greasemonkey", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/greasemonkey", | ||
"license": "MIT", | ||
@@ -27,4 +28,4 @@ "contributors": [ | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "12477cd29f6d8ecc58b5132c0d41a8c9c96287fdf4fcb95ee72c9a915d444aa4", | ||
"typeScriptVersion": "3.4" | ||
"typesPublisherContentHash": "1147aa05496d74ff928871f7dbdd59b4a5318e59f217b864799c43ced2a3708a", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Sat, 30 Jan 2021 13:59:53 GMT | ||
* Last updated: Thu, 08 Jul 2021 12:02:30 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: `GM`, `unsafeWindow` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
13950
0