Files
flatbuffers/tests/flatc/foo_with_ns.fbs
Derek Bailey fa1174aa7b [TypeScript] Fix namespaceless schema generation (#7432)
* Add tests for ts flatc

* fix typescript generation of namespaceless file

* Add typescript genereated code from generate_code.py

* Support multiple module flatc testing
2022-08-14 11:34:19 -07:00

9 lines
86 B
Plaintext

include "bar/bar.fbs";
namespace something;
table Foo {
bar:Bar;
}
root_type Foo;