input: ```go type Foo struct { Bar, OhNo int } ``` output: ```ts export interface Info { Bar: number /* int */; } ``` expected output: ```ts export interface Info { Bar: number /* int */; OhNo: number /* int */; } ```