fr.lteconsulting.angular2gwt.client.interop.ng.http.Http Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of angular2-gwt Show documentation
Show all versions of angular2-gwt Show documentation
Allows to develop Angular 2 applications with GWT
package fr.lteconsulting.angular2gwt.client.interop.ng.http;
import fr.lteconsulting.angular2gwt.client.interop.angular.rxjs.Observable;
import jsinterop.annotations.JsType;
@JsType( isNative = true, namespace = "ng.http", name = "Http" )
public class Http
{
public native Observable get( String url );
public native Observable post( String url );
public native Observable post( String url, String data, Object options );
public native Observable put( String url );
public native Observable put( String url, String data, Object options );
public native Observable delete( String url );
public native Observable delete( String url, Object options );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy