diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:14 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | c05efa8d7ae464235cf83d7c0956e42dc6974103 (patch) | |
tree | 6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/syncmanager/index.md | |
parent | 13a5e017558b248ee1647d4a5825f183b51f09ad (diff) | |
download | translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2 translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/syncmanager/index.md')
-rw-r--r-- | files/fr/web/api/syncmanager/index.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/fr/web/api/syncmanager/index.md b/files/fr/web/api/syncmanager/index.md new file mode 100644 index 0000000000..494d730c82 --- /dev/null +++ b/files/fr/web/api/syncmanager/index.md @@ -0,0 +1,46 @@ +--- +title: SyncManager +slug: Web/API/SyncManager +translation_of: Web/API/SyncManager +--- +<p>{{APIRef("Service Workers API")}}{{Non-standard_header}}</p> + +<p>L'interface <strong><code>SyncManager</code></strong> de l' <a href="/en-US/docs/Web/API/ServiceWorker_API">API ServiceWorker </a> fournit une interface pour l'enregistrement et la liste des sync registrations.</p> + +<h2 id="Properties">Properties</h2> + +<p>None.</p> + +<h2 id="Methods">Methods</h2> + +<dl> + <dt>{{domxref("SyncManager.register")}}</dt> + <dd>Créé une nouvelle sync registration et retourne une {{jsxref("Promise")}}</dd> + <dt>{{domxref("SyncManager.getTags")}}</dt> + <dd>Renvoie une liste d'identifiants définis par le développeur pour l'enregistrement du SyncManager.</dd> +</dl> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('Background Sync','#sync-manager-interface','SyncManager')}}</td> + <td>{{Spec2('Background Sync')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + +<div> + + +<p>{{Compat("api.SyncManager")}}</p> +</div> |