Preview:```ts
type TList<P extends string = string> = Record<Uppercase<${P}${string}>, string>
const items = {
A: 'aaa',
B: 'bbb',
C: 'ccc'
} satisfies TList
function foo1(a: TList) {
return a
}
function foo2<
Input extends TList
(a: Input) {
return a
...```
You can choose specific lines to embed by selecting them before copying the link.