Sha256: 8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b
Contents?: true
Size: 293 Bytes
Versions: 26
Compression:
Stored size: 293 Bytes
Contents
export interface waitForOptions { container?: HTMLElement timeout?: number interval?: number onTimeout?: (error: Error) => Error mutationObserverOptions?: MutationObserverInit } export function waitFor<T>( callback: () => Promise<T> | T, options?: waitForOptions, ): Promise<T>
Version data entries
26 entries across 26 versions & 1 rubygems