Yo, why can't I seem to resolve types for `inputs`...
# typescript
f
Yo, why can't I seem to resolve types for
inputs
?
import * as inputs from '@pulumi/azure-native/types/input';
but unable to navigate to symbol for eg:
inputs.keyvault.AccessPolicyEntryArgs
I can only navigate to
inputs
but everything in there is interpreted as text and not symbols so cant navigate, and have to search for type definitions by name, so annoying 🤷‍♂️
is there are
@types
npm package I need to add?
image.png
maybe this explains it?
m
l
Yes, the azure-native .d.ts file is too large. It's a known issue. You can split it if you know what you're doing, but getting the next version of the library will mean you have to do it again.
f
Thanks for the replies