Say I have a models.ts like so:
models.ts
class Foo { name?: string; } type FooDocument = { name: string }; export { Foo, FooDocument };