Definition
Web Periodic Background Synchronization defines PeriodicSyncManager
[Exposed=(Window,Worker)]
interface PeriodicSyncManager {
Promise<undefined> register(DOMString tag, optional BackgroundSyncOptions options = {});
Promise<sequence<DOMString>> getTags();
Promise<undefined> unregister(DOMString tag);
};