fix(common): expose the HttpUploadProgressEvent interface as public API (#30852)

Fixes #30814

PR Close #30852
This commit is contained in:
Santosh Yadav
2019-06-05 13:36:06 +05:30
committed by Misko Hevery
parent 7afd2603c9
commit 5c18f23788
3 changed files with 6 additions and 2 deletions

View File

@ -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;