index.d.ts 306 B

1234567
  1. /**
  2. * Work around Safari 14 IndexedDB open bug.
  3. *
  4. * Safari has a horrible bug where IDB requests can hang while the browser is starting up. https://bugs.webkit.org/show_bug.cgi?id=226547
  5. * The only solution is to keep nudging it until it's awake.
  6. */
  7. export default function idbReady(): Promise<void>;