Closed s97712 closed 5 months ago
namespace Foo { export type Bar = number } export type Bar = number console.log(typeOf<Foo.Bar>()) // output: { kind: 0, typeName: undefined } console.log(typeOf<Bar>()) // output: { kind: 6, typeName: 'Bar', id: 17 }
namespaces are not supported