@whatwg-node/node-fetch
Advanced tools
Comparing version 0.3.3 to 0.3.4-alpha-20230321094144-f2a1803
{ | ||
"name": "@whatwg-node/node-fetch", | ||
"version": "0.3.3", | ||
"version": "0.3.4-alpha-20230321094144-f2a1803", | ||
"description": "Fetch API implementation for Node", | ||
"sideEffects": false, | ||
"peerDependencies": { | ||
"@types/node": "^18.0.6" | ||
}, | ||
"dependencies": { | ||
@@ -10,0 +7,0 @@ "@whatwg-node/events": "^0.0.2", |
/// <reference types="node" /> | ||
import { BlobOptions } from 'buffer'; | ||
interface BlobOptions { | ||
/** | ||
* @default 'utf8' | ||
*/ | ||
encoding?: BufferEncoding | undefined; | ||
/** | ||
* The Blob content-type. The intent is for `type` to convey | ||
* the MIME media type of the data, however no validation of the type format | ||
* is performed. | ||
*/ | ||
type?: string | undefined; | ||
} | ||
export declare class PonyfillBlob implements Blob { | ||
@@ -19,1 +30,2 @@ private blobParts; | ||
} | ||
export {}; |
Sorry, the diff of this file is not supported yet
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
134222
5
3270