Preview:```ts
type AProps = {
onClose: () => void
}
type BProps = {
onSave: () => void
onClose: () => void
}
function A({onClose}: AProps) {}
function B({onSave, onClose}: BProps) {}
const Zzz: (props: BProps) => void = A```
You can choose specific lines to embed by selecting them before copying the link.