In my current attempt to install typings (version 1.3.2) for the malihu-custom-scrollbar-plugin, I am facing an issue with some wrong type identification error (Error TS1110: Type expected). This error is caused by the use of string literal types syntax like "axis?: "x" | "y" | "xy".
Upon checking the DefinitelyTyped repository, I found that in the types-2.0 branch, the typings do not use this syntax. I am now exploring ways to install those alternative typings instead of the default ones provided.
Is there a method to achieve this without manually fixing the problem in the index.d.ts file?
P.S. I have tried experimenting with the typings install <location>
options, but I could not find the right solution and also struggled to locate helpful documentation on its usage.