Preview:```ts
type SomeType = Record<string, string>
function myFunc<
A extends SomeType,
K extends keyof A & string
(arr: A[], keys: readonly K[]): Record<K, string> {
// Do something here
ret
...```
You can choose specific lines to embed by selecting them before copying the link.