mphttpx 2.1.5-beta.2 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -133,7 +133,7 @@ declare class FormDataP implements FormData {
|
|
|
133
133
|
declare const FormDataE: {
|
|
134
134
|
new (form?: HTMLFormElement, submitter?: HTMLElement | null): FormData;
|
|
135
135
|
prototype: FormData;
|
|
136
|
-
}
|
|
136
|
+
};
|
|
137
137
|
|
|
138
138
|
declare function setXMLHttpRequest(XHR: unknown): void;
|
|
139
139
|
declare function fetchP(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
|
|
@@ -391,6 +391,6 @@ declare const XMLHttpRequestE: {
|
|
|
391
391
|
readonly HEADERS_RECEIVED: 2;
|
|
392
392
|
readonly LOADING: 3;
|
|
393
393
|
readonly DONE: 4;
|
|
394
|
-
}
|
|
394
|
+
};
|
|
395
395
|
|
|
396
396
|
export { AbortControllerE as AbortController, AbortControllerP, AbortSignalE as AbortSignal, AbortSignalP, BlobE as Blob, BlobP, CustomEventE as CustomEvent, CustomEventP, EventE as Event, EventP, EventTargetE as EventTarget, EventTargetP, FileE as File, FileP, FileReaderE as FileReader, FileReaderP, FormDataE as FormData, FormDataP, HeadersE as Headers, HeadersP, RequestE as Request, RequestP, ResponseE as Response, ResponseP, TextDecoderE as TextDecoder, TextDecoderP, TextEncoderE as TextEncoder, TextEncoderP, URLSearchParamsE as URLSearchParams, URLSearchParamsP, WebSocketE as WebSocket, WebSocketImpl as WebSocketP, XMLHttpRequestE as XMLHttpRequest, XMLHttpRequestImpl as XMLHttpRequestP, fetchE as fetch, fetchP, setConnectSocket, setRequest, setXMLHttpRequest };
|