mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* Fix C/C++ Create<Type>Direct with sorted vectors If a struct has a key the vector has to be sorted. To sort the vector you can't use "const". * Changes due to code review * Improve code readability * Add generate of JSON schema to string to lib * option indent_step is supported * Remove unused variables * Fix break in test * Fix style to be consistent with rest of the code * [TS] Fix reserved words as arguments (#6955) * [TS] Fix generation of reserved words in object api (#7106) * [TS] Fix generation of object api * [TS] Fix MakeCamel -> ConvertCase * [TS] Add test for struct of struct of struct * Update generated files * Add missing files * [TS] Fix query of null/undefined fields in object api
18 lines
1.4 KiB
TypeScript
18 lines
1.4 KiB
TypeScript
export { Monster as MyGameExample2Monster, MonsterT as MyGameExample2MonsterT } from './my-game/example2/monster';
|
|
export { Ability, AbilityT } from './my-game/example/ability';
|
|
export { Any, unionToAny, unionListToAny } from './my-game/example/any';
|
|
export { AnyAmbiguousAliases, unionToAnyAmbiguousAliases, unionListToAnyAmbiguousAliases } from './my-game/example/any-ambiguous-aliases';
|
|
export { AnyUniqueAliases, unionToAnyUniqueAliases, unionListToAnyUniqueAliases } from './my-game/example/any-unique-aliases';
|
|
export { Color } from './my-game/example/color';
|
|
export { Monster, MonsterT } from './my-game/example/monster';
|
|
export { Race } from './my-game/example/race';
|
|
export { Referrable, ReferrableT } from './my-game/example/referrable';
|
|
export { Stat, StatT } from './my-game/example/stat';
|
|
export { StructOfStructs, StructOfStructsT } from './my-game/example/struct-of-structs';
|
|
export { StructOfStructsOfStructs, StructOfStructsOfStructsT } from './my-game/example/struct-of-structs-of-structs';
|
|
export { Test, TestT } from './my-game/example/test';
|
|
export { TestSimpleTableWithEnum, TestSimpleTableWithEnumT } from './my-game/example/test-simple-table-with-enum';
|
|
export { TypeAliases, TypeAliasesT } from './my-game/example/type-aliases';
|
|
export { Vec3, Vec3T } from './my-game/example/vec3';
|
|
export { InParentNamespace, InParentNamespaceT } from './my-game/in-parent-namespace';
|