matchAll method

JSPromise<JSArray<Client>> matchAll([
  1. ClientQueryOptions options
])

The matchAll() method of the Clients interface returns a Promise for a list of service worker Client objects. Include the options parameter to return all service worker clients whose origin is the same as the associated service worker's origin. If options are not included, the method returns only the service worker clients controlled by the service worker.

Implementation

external JSPromise<JSArray<Client>> matchAll([ClientQueryOptions options]);