mirror of
https://github.com/simoneb/axios-hooks.git
synced 2025-12-08 21:25:56 +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>
|
|
}
|
|
}
|