forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Expensify#32484 from JKobrynski/migrateRemainingHo…
…oksToTypeScript [TS Migration] Migrate '[Remaining Group 2]' hook to TypeScript
- Loading branch information
Showing
5 changed files
with
55 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 5 additions & 7 deletions
12
src/hooks/useDelayedInputFocus.js → src/hooks/useDelayedInputFocus.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** This direct import is required, because this function was added by a patch, | ||
* and its typings are not supported by default */ | ||
import {useTabAnimation} from '@react-navigation/material-top-tabs/src/utils/useTabAnimation'; | ||
|
||
declare module '@react-navigation/material-top-tabs' { | ||
// eslint-disable-next-line import/prefer-default-export | ||
export {useTabAnimation}; | ||
} |