I'm wanting to do something like this: ``` interface Foo { id: string; biz: string; bar: string; } type PartialFoo = Pick<Foo, "id" | "biz">; ``` Pretty simple. But the compiler will give me: ``` Error: Generics are not yet supported by ts-interface-builder: ``` Is there any plan to incorporate this support?