mirror of
https://github.com/simoneb/axios-hooks.git
synced 2026-02-01 17:21:00 +00:00
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import { RenderHookResult } from '@testing-library/react-hooks'
|
|
|
|
declare module '@testing-library/react-hooks' {
|
|
interface RenderHookResult<P, R> {
|
|
readonly wait: (callback: Function, options: Object) => Promise<void>
|
|
}
|
|
}
|