Clients
Functions
Link copied to clipboard
Link copied to clipboard
suspend fun <T : ClientQueryOptions> matchAll(options: T = definedExternally): ReadonlyArray<Client>
The matchAll()
method of the Clients interface returns a Promise for a list of service worker clients whose origin is the same as the associated service worker's origin.
Link copied to clipboard
fun <T : ClientQueryOptions> matchAllAsync(options: T = definedExternally): Promise<ReadonlyArray<Client>>
Link copied to clipboard
The openWindow()
method of the Clients interface creates a new top level browsing context and loads a given URL.
Link copied to clipboard