Preview:```ts
class Api {
foo = {
method1: (param: string) => "",
method2: (param: string) => "",
}
}
type ApiSections = Pick<Api, "foo">
type FirstParam<
T extends keyof ApiSections,
K extends keyof ApiSections[T]
= Parameters<ApiSections[T][K]>```
You can choose specific lines to embed by selecting them before copying the link.