Preview:```ts
enum Kind {
program = "program",
one = "one",
two = "two",
three = "three",
four = "four",
}
type One = {
kind: Kind.one
foo: string
}
type Two = {
kind: Kind.two
bar: One
baz: Expr
}
type Three = {
kind: Kind.thr
...```
You can choose specific lines to embed by selecting them before copying the link.