Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ReactiveX/rxjs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: af37b131072d0b661898eb89a2db4f8bcc22b4b7
Choose a base ref
..
head repository: ReactiveX/rxjs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 501bac49bab8949a64f6b76a47ac47ec6b1bfec1
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/observable/dom/AjaxObservable.ts
2 changes: 1 addition & 1 deletion src/observable/dom/AjaxObservable.ts
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ export interface AjaxCreationMethod {
post(url: string, body?: any, headers?: Object): Observable<AjaxResponse>;
put(url: string, body?: any, headers?: Object): Observable<AjaxResponse>;
delete(url: string, headers?: Object): Observable<AjaxResponse>;
getJSON<R>(url: string, headers?: Object): Observable<R>;
getJSON<T>(url: string, headers?: Object): Observable<T>;
}

export function ajaxGet(url: string, headers: Object = null) {