```ts // ./a.ts export type Hello = string; ``` ```js import { Hello } from "./a"; ``` **Expected:** Error: Types cannot be imported in a JavaScript file. **Actual:** No error.