mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-01 19:58:15 +00:00
* TS/JS: Export object based classes on entry
Along with the non object ones, for consistency. This is a regression
introduced recently.
Before:
`export { UpdateSettingsRequest } from './worker/update-settings-request.js';`
Now:
`export { UpdateSettingsRequest, UpdateSettingsRequestT } from './worker/update-settings-request.js';`
* only export object based classes for structs
Enums are not elegible.
---------
Co-authored-by: Björn Harrtell <bjornharrtell@users.noreply.github.com>
Co-authored-by: Derek Bailey <derekbailey@google.com>
5 lines
255 B
TypeScript
5 lines
255 B
TypeScript
export { InParentNamespace, InParentNamespaceT } from './my-game/in-parent-namespace.js';
|
|
export * as Example from './my-game/example.js';
|
|
export * as Example2 from './my-game/example2.js';
|
|
export * as OtherNameSpace from './my-game/other-name-space.js';
|