Skip to content

Commit

Permalink
add return type generic to memo func
Browse files Browse the repository at this point in the history
  • Loading branch information
Ray Epps authored and Ray Epps committed Mar 8, 2024
1 parent 2be4acf commit 18337ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/curry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -466,16 +466,16 @@ const memoize = <TArgs extends any[], TResult>(
* is given previously computed values will be checked
* for expiration before being returned.
*/
export const memo = <TArgs extends any[]>(
func: (...args: TArgs) => any,
export const memo = <TArgs extends any[], TResult>(
func: (...args: TArgs) => TResult,
options: {
key?: (...args: TArgs) => string
ttl?: number
} = {}
) => {
return memoize({}, func, options.key ?? null, options.ttl ?? null) as (
...args: TArgs
) => any
) => TResult
}

export type DebounceFunction<TArgs extends any[]> = {
Expand Down

0 comments on commit 18337ce

Please sign in to comment.