Files
2026-03-13 19:23:37 +03:00

1 line
129 B
TypeScript

export default function memoize<ArgType = any, ReturnType = any>(fn: (arg: ArgType) => ReturnType): (arg: ArgType) => ReturnType;