Preview:```ts
enum FruitType {
Apple,
Banana,
}
enum AppleType {
Value1,
Value2,
}
enum BananaType {
Value1,
Value2,
}
function getFruit(
fruitType: FruitType.Apple,
appleType: AppleType
): string
function getFruit(
fruitType: FruitType.Banana,
bananaType: BananaType
): string
...```
You can choose specific lines to embed by selecting them before copying the link.