as the title says, if I have the following struct: ```go // Foo is used to check items type Foo struct { // ID is an id ID string } ``` would be nice to convert it to this: ```ts /** * Foo is used to check items */ interface Foo { /** * ID is an id */ ID: string; } ```