Preview:```ts
interface Building {
floors: number
}
const building: Building = {floors: 6}
class Person {
constructor(
public building: Building,
public position: number // How to use TypeScript type annotation to
) //
...```
You can choose specific lines to embed by selecting them before copying the link.