fix(common): expose the HttpUploadProgressEvent
interface as public API (#30852)
Fixes #30814 PR Close #30852
This commit is contained in:

committed by
Misko Hevery

parent
7afd2603c9
commit
5c18f23788
4
tools/public_api_guard/common/http.d.ts
vendored
4
tools/public_api_guard/common/http.d.ts
vendored
@ -1694,6 +1694,10 @@ export interface HttpSentEvent {
|
||||
type: HttpEventType.Sent;
|
||||
}
|
||||
|
||||
export interface HttpUploadProgressEvent extends HttpProgressEvent {
|
||||
type: HttpEventType.UploadProgress;
|
||||
}
|
||||
|
||||
export declare class HttpUrlEncodingCodec implements HttpParameterCodec {
|
||||
decodeKey(key: string): string;
|
||||
decodeValue(value: string): string;
|
||||
|
Reference in New Issue
Block a user