Preview:```ts
type T1 = [number, string];
type T2 = [boolean, ...T1];
type T3 = [...T1, ...T2];
type O1 = { name: "Ras" };
type O2 = { age: 69 };
type O3 = { ...O1, ...O2 };```
You can choose specific lines to embed by selecting them before copying the link.