As of 5.0, @angular/http is deprecated. @angular/common/http will be the official HTTP API in Angular going forward. PR Close #18906
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /** @stable */
 | |
| export declare class HttpClientTestingModule {
 | |
| }
 | |
| 
 | |
| /** @stable */
 | |
| export declare abstract class HttpTestingController {
 | |
|     abstract expectNone(url: string, description?: string): void;
 | |
|     abstract expectNone(params: RequestMatch, description?: string): void;
 | |
|     abstract expectNone(matchFn: ((req: HttpRequest<any>) => boolean), description?: string): void;
 | |
|     abstract expectNone(match: string | RequestMatch | ((req: HttpRequest<any>) => boolean), description?: string): void;
 | |
|     abstract expectOne(url: string, description?: string): TestRequest;
 | |
|     abstract expectOne(params: RequestMatch, description?: string): TestRequest;
 | |
|     abstract expectOne(matchFn: ((req: HttpRequest<any>) => boolean), description?: string): TestRequest;
 | |
|     abstract expectOne(match: string | RequestMatch | ((req: HttpRequest<any>) => boolean), description?: string): TestRequest;
 | |
|     abstract match(match: string | RequestMatch | ((req: HttpRequest<any>) => boolean)): TestRequest[];
 | |
|     abstract verify(opts?: {
 | |
|         ignoreCancelled?: boolean;
 | |
|     }): void;
 | |
| }
 | |
| 
 | |
| /** @stable */
 | |
| export interface RequestMatch {
 | |
|     method?: string;
 | |
|     url?: string;
 | |
| }
 | |
| 
 | |
| /** @stable */
 | |
| export declare class TestRequest {
 | |
|     readonly cancelled: boolean;
 | |
|     request: HttpRequest<any>;
 | |
|     constructor(request: HttpRequest<any>, observer: Observer<HttpEvent<any>>);
 | |
|     error(error: ErrorEvent, opts?: {
 | |
|         headers?: HttpHeaders | {
 | |
|             [name: string]: string | string[];
 | |
|         };
 | |
|         status?: number;
 | |
|         statusText?: string;
 | |
|     }): void;
 | |
|     event(event: HttpEvent<any>): void;
 | |
|     flush(body: ArrayBuffer | Blob | string | number | Object | (string | number | Object | null)[] | null, opts?: {
 | |
|         headers?: HttpHeaders | {
 | |
|             [name: string]: string | string[];
 | |
|         };
 | |
|         status?: number;
 | |
|         statusText?: string;
 | |
|     }): void;
 | |
| }
 |