Preview:```ts
type Func = (
args: Record<string, any> | undefined
) => void
const func: Func = ({bar = "bar"}) => {
console.log(bar)
}```
You can choose specific lines to embed by selecting them before copying the link.