resultingClientExists.d.ts 474 B

123456789101112
  1. import '../_version.js';
  2. /**
  3. * Returns a promise that resolves to a window client matching the passed
  4. * `resultingClientId`. For browsers that don't support `resultingClientId`
  5. * or if waiting for the resulting client to apper takes too long, resolve to
  6. * `undefined`.
  7. *
  8. * @param {string} [resultingClientId]
  9. * @return {Promise<Client|undefined>}
  10. * @private
  11. */
  12. export declare function resultingClientExists(resultingClientId?: string): Promise<Client | undefined>;