node_modules/@types/ramda"' has no exported member 'thunkify'.
"@types/ramda": "^0.25.47"
Forcing me to use () => myfunction(42) instead of thunkify(myfunction, 42)
How do I import: import { thunkify, prop, path, type, map, compose, flip, head, isEmpty, reduce, intersection, ifElse } from 'ramda' All's OK except for thunkify.
node_modules/@types/ramda"' has no exported member 'thunkify'.
"@types/ramda": "^0.25.47"
Forcing me to use
() => myfunction(42)
instead ofthunkify(myfunction, 42)
How do I import:
import { thunkify, prop, path, type, map, compose, flip, head, isEmpty, reduce, intersection, ifElse } from 'ramda'
All's OK except for thunkify.