Preview:```ts
type TestA = "Test A"
type TestB = "Test B"
export interface SampleA {
type: "A"
test?: {
sub: TestA
h: string
}[]
}
export interface SampleB {
type: "B"
test?: {
sub: TestB
h: string
}[]
}
export type MyType = SampleA | SampleB
...```
You can choose specific lines to embed by selecting them before copying the link.