Skip to content

Commit

Permalink
add return type generic to memo func (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
sodiray committed Mar 8, 2024
1 parent 2be4acf commit 069b26c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "radash",
"version": "12.0.0",
"version": "12.1.0",
"description": "Functional utility library - modern, simple, typed, powerful",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
Expand Down
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 069b26c

Please sign in to comment.