Is it possible to generate TypeScript ´type` declarations instead of `interface`s? If not can it be added to the library similar to this: ```cs [TsType] class Foo { int Bar; } ``` ```ts type Foo = { Bar: number } ```