From
TypeScript Version: 2.3.1-insider0416
Code
npm install snoowrap
- In a ts file:
import * as snoowrap from 'snoowrap'
snoowrap.|
- Trigger intellisense at the
|
Expected behavior:
The import is of an any type so no type checking is performed on it.
However, if we instead use a js file with the exact same contents, we do get some suggestions:

I would also expect these suggestions in TypeScript.
I was actually surprised that TypeScript picked up this IntelliSense for an untyped module in the first place. When was this feature added?
Actual behavior:
No suggestions are shown. This is consistent with the intellisense for other any types
From
TypeScript Version: 2.3.1-insider0416
Code
npm install snoowrap|Expected behavior:
The import is of an
anytype so no type checking is performed on it.However, if we instead use a js file with the exact same contents, we do get some suggestions:
I would also expect these suggestions in TypeScript.
I was actually surprised that TypeScript picked up this IntelliSense for an untyped module in the first place. When was this feature added?
Actual behavior:
No suggestions are shown. This is consistent with the intellisense for other
anytypes