Optional omission of Typescript entrypoint (#8057)

This commit is contained in:
Max Burke
2023-08-20 01:28:47 -07:00
committed by GitHub
parent 48da238920
commit afafd206a3
3 changed files with 7 additions and 1 deletions

View File

@@ -706,6 +706,7 @@ struct IDLOptions {
bool keep_proto_id;
bool python_no_type_prefix_suffix;
bool python_typing;
bool ts_omit_entrypoint;
ProtoIdGapAction proto_id_gap_action;
// Possible options for the more general generator below.
@@ -818,6 +819,7 @@ struct IDLOptions {
keep_proto_id(false),
python_no_type_prefix_suffix(false),
python_typing(false),
ts_omit_entrypoint(false),
proto_id_gap_action(ProtoIdGapAction::WARNING),
mini_reflect(IDLOptions::kNone),
require_explicit_ids(false),