ng-shopping-cart
Version:
An Angular component library to create shopping carts
12 lines (11 loc) • 339 B
TypeScript
import { HttpHeaders, HttpParams } from '@angular/common/http';
/**
* Angular Http init options for an HTTP request
*/
export interface HttpOptions {
headers?: HttpHeaders;
reportProgress?: boolean;
params?: HttpParams;
responseType?: 'arraybuffer' | 'blob' | 'json' | 'text';
withCredentials?: boolean;
}