Preview:```ts
type QueryConfig<T> = {
getTs: () => Promise<T[]>
filterT?: (t: T) => boolean
doSomethingWithT?: (t: T) => void
}
const aQuery: QueryConfig<{include: boolean}> = {
getTs: async () => [
{include: true},
{include: false},
],
filterT: ({include}) => include
...```
You can choose specific lines to embed by selecting them before copying the link.