Seeking to utilize a specific function from lodash - assignin. I have successfully installed lodash.assignin
and incorporated it into my project:
import assignIn = require('lodash.assignin');
However, when compiling, an error occurs: "error TS2307: Cannot find module 'lodash.assignin'".
I recognize the need for typings related to the lodash.assignin
package, but only the lodash/assignin
type is available in @types/lodash
.
I am hesitant to install the entire lodash package simply for one of its functions. Is there a way for lodash to provide typings for individual packages?