-
Notifications
You must be signed in to change notification settings - Fork 12
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 #2 from oriSomething/master
Adding TypeScript typings
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type DependencyList = ReadonlyArray<any>; | ||
|
||
declare function useMemoOne<T>( | ||
// getResult changes on every call, | ||
getResult: () => T, | ||
// the inputs array changes on every call | ||
inputs: DependencyList | undefined, | ||
): T; | ||
|
||
declare function useCallbackOne<T extends (...args: any[]) => any>( | ||
// getResult changes on every call, | ||
callback: T, | ||
// the inputs array changes on every call | ||
inputs: DependencyList | undefined, | ||
): T; | ||
|
||
export { useMemoOne, useCallbackOne }; |
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