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

js.web.serviceworker.RegistrationOptions Maven / Gradle / Ivy

package js.web.serviceworker;

import js.lang.Any;
import js.web.webworkers.WorkerType;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface RegistrationOptions extends Any {
    @JSProperty
    @Nullable
    String getScope();

    @JSProperty
    void setScope(String scope);

    @JSProperty
    @Nullable
    WorkerType getType();

    @JSProperty
    void setType(WorkerType type);

    @JSProperty
    @Nullable
    ServiceWorkerUpdateViaCache getUpdateViaCache();

    @JSProperty
    void setUpdateViaCache(ServiceWorkerUpdateViaCache updateViaCache);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy