我在 VS Code 中遇到了 macbook 的问题,即我没有收到有关 TypeScript IntelliSense 的任何建议。
type User = {
name: string,
age: number
}
const user:User = {
//If I press "ctrl+space" I am expecting to get the suggestions. Which is not happening.
}
Run Code Online (Sandbox Code Playgroud)
我期待的事情是不是错了?或者有什么问题吗?