```ts interface Interface { a: string } type Type = { a: string } // Hovering over `Interface` shows only `interface Interface` let a:Interface // Hovering over `Type` shows `Type = { a: string }` let b:Type ```