Files
flatbuffers/tests/ts/relative_imports/relative_imports.fbs
2025-12-22 08:18:43 -06:00

21 lines
228 B
Plaintext

namespace Transit.One;
table Info {
timestamp:ulong;
}
namespace Transit.Two;
table Identity {
id:uint;
}
namespace Transit.Three;
table Header {
info:Transit.One.Info;
id:Transit.Two.Identity;
}
root_type Header;