Preview:```ts
// Need to be converted from R into a generic Result. It will be ideal if the decision is carried out over 4. Now 2
type A = {
i: boolean;
o: void;
};
type B = {
i: string;
o: number;
};
type R = {
A: A;
B: B;
};
// Get type
type Result = {
...```
You can choose specific lines to embed by selecting them before copying the link.