Field namespace is ignored when generating TypeScript interfaces Example: ```javasctipt { "type": "record", "name": "Foo", "namespace": "bar", "fields": [ { "name": "bazFoo", "type": { "type": "record", "namespace": "baz", "name": "Foo", "fields": [ { "name": "value", "type": "string" } ] } } ] } ``` generates ```typescript export interface Foo { name: string; } export interface FooInterface { barFoo: Foo; } export class Foo extends BaseAvroRecord implements FooInterface { // ... public barFoo!: Foo; // ... } ```
Field namespace is ignored when generating TypeScript interfaces
Example:
generates