mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-08 05:29:14 +08:00
12 lines
474 B
Text
12 lines
474 B
Text
import '../_version.js';
|
|
/**
|
|
* Returns a promise that resolves to a window client matching the passed
|
|
* `resultingClientId`. For browsers that don't support `resultingClientId`
|
|
* or if waiting for the resulting client to apper takes too long, resolve to
|
|
* `undefined`.
|
|
*
|
|
* @param {string} [resultingClientId]
|
|
* @return {Promise<Client|undefined>}
|
|
* @private
|
|
*/
|
|
export declare function resultingClientExists(resultingClientId?: string): Promise<Client | undefined>;
|