All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.beacon.NavigatorBeacon Maven / Gradle / Ivy

package js.web.beacon;

import js.lang.Any;
import js.web.dom.Blob;
import js.web.dom.BufferSource;
import js.web.dom.FormData;


public interface NavigatorBeacon extends Any {
    boolean sendBeacon(String url);

    boolean sendBeacon(String url, Blob data);

    boolean sendBeacon(String url, BufferSource data);

    boolean sendBeacon(String url, FormData data);

    boolean sendBeacon(String url, String data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy