mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +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>
10 lines
473 B
JavaScript
10 lines
473 B
JavaScript
// automatically generated by the FlatBuffers compiler, do not modify
|
|
export { Attacker, AttackerT } from './attacker.js';
|
|
export { BookReader, BookReaderT } from './book-reader.js';
|
|
export { Character } from './character.js';
|
|
export { FallingTub, FallingTubT } from './falling-tub.js';
|
|
export { Gadget } from './gadget.js';
|
|
export { HandFan, HandFanT } from './hand-fan.js';
|
|
export { Movie, MovieT } from './movie.js';
|
|
export { Rapunzel, RapunzelT } from './rapunzel.js';
|