Preview:```ts
const obj = {
a: {
b: {
c: "test",
},
},
history: {
hola: (username: string, id: string) =>
Hola ${username}!,
},
}
type FlattenObjectKeys<
T extends Record<string, unknown>,
Key = keyof T
= Key extends string
? T[Key] extends Record<string, unknown
...```
You can choose specific lines to embed by selecting them before copying the link.