typedoc 0.26.0-beta.2 → 0.26.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/README.md +0 -2
  2. package/dist/lib/application.d.ts +6 -1
  3. package/dist/lib/application.js +10 -0
  4. package/dist/lib/cli.js +14 -0
  5. package/dist/lib/converter/comments/discovery.js +0 -1
  6. package/dist/lib/converter/comments/index.d.ts +1 -1
  7. package/dist/lib/converter/comments/index.js +5 -2
  8. package/dist/lib/converter/comments/textParser.d.ts +0 -3
  9. package/dist/lib/converter/comments/textParser.js +39 -3
  10. package/dist/lib/converter/context.d.ts +2 -2
  11. package/dist/lib/converter/context.js +2 -4
  12. package/dist/lib/converter/converter.d.ts +1 -0
  13. package/dist/lib/converter/converter.js +58 -9
  14. package/dist/lib/converter/factories/index-signature.js +1 -1
  15. package/dist/lib/converter/plugins/ImplementsPlugin.js +3 -2
  16. package/dist/lib/converter/plugins/LinkResolverPlugin.js +7 -0
  17. package/dist/lib/converter/plugins/SourcePlugin.d.ts +1 -15
  18. package/dist/lib/converter/plugins/SourcePlugin.js +4 -45
  19. package/dist/lib/converter/symbols.js +22 -0
  20. package/dist/lib/converter/types.js +20 -1
  21. package/dist/lib/converter/utils/repository.d.ts +46 -1
  22. package/dist/lib/converter/utils/repository.js +191 -64
  23. package/dist/lib/internationalization/internationalization.d.ts +5 -2
  24. package/dist/lib/internationalization/internationalization.js +42 -1
  25. package/dist/lib/internationalization/locales/jp.cjs +308 -0
  26. package/dist/lib/internationalization/locales/jp.d.cts +307 -0
  27. package/dist/lib/internationalization/locales/zh.cjs +308 -0
  28. package/dist/lib/internationalization/locales/zh.d.cts +307 -0
  29. package/dist/lib/internationalization/translatable.d.ts +187 -164
  30. package/dist/lib/internationalization/translatable.js +185 -163
  31. package/dist/lib/models/comments/comment.d.ts +29 -3
  32. package/dist/lib/models/comments/comment.js +6 -0
  33. package/dist/lib/models/reflections/abstract.d.ts +12 -11
  34. package/dist/lib/models/reflections/abstract.js +46 -49
  35. package/dist/lib/models/reflections/document.d.ts +6 -1
  36. package/dist/lib/models/reflections/document.js +12 -2
  37. package/dist/lib/models/reflections/kind.d.ts +2 -0
  38. package/dist/lib/models/reflections/kind.js +3 -1
  39. package/dist/lib/models/reflections/project.js +1 -0
  40. package/dist/lib/models/reflections/signature.js +7 -2
  41. package/dist/lib/models/types.d.ts +9 -1
  42. package/dist/lib/models/types.js +5 -18
  43. package/dist/lib/output/components.d.ts +2 -0
  44. package/dist/lib/output/components.js +139 -66
  45. package/dist/lib/output/models/UrlMapping.d.ts +4 -0
  46. package/dist/lib/output/plugins/IconsPlugin.js +21 -17
  47. package/dist/lib/output/renderer.d.ts +16 -0
  48. package/dist/lib/output/themes/MarkedPlugin.js +8 -2
  49. package/dist/lib/output/themes/default/DefaultTheme.js +5 -2
  50. package/dist/lib/output/themes/default/DefaultThemeRenderContext.d.ts +4 -3
  51. package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +3 -2
  52. package/dist/lib/output/themes/default/layouts/default.js +10 -10
  53. package/dist/lib/output/themes/default/partials/comment.d.ts +2 -2
  54. package/dist/lib/output/themes/default/partials/comment.js +24 -15
  55. package/dist/lib/output/themes/default/partials/footer.js +2 -2
  56. package/dist/lib/output/themes/default/partials/index.js +1 -1
  57. package/dist/lib/output/themes/default/partials/member.declaration.js +30 -4
  58. package/dist/lib/output/themes/default/partials/member.signature.title.d.ts +2 -1
  59. package/dist/lib/output/themes/default/partials/member.signature.title.js +1 -2
  60. package/dist/lib/output/themes/default/partials/members.group.js +17 -10
  61. package/dist/lib/output/themes/default/partials/members.js +7 -3
  62. package/dist/lib/output/themes/default/partials/navigation.js +10 -4
  63. package/dist/lib/output/themes/default/partials/reflectionPreview.js +3 -2
  64. package/dist/lib/output/themes/default/partials/type.js +26 -2
  65. package/dist/lib/output/themes/default/templates/reflection.js +2 -2
  66. package/dist/lib/output/themes/lib.d.ts +0 -1
  67. package/dist/lib/output/themes/lib.js +0 -4
  68. package/dist/lib/serialization/schema.d.ts +23 -11
  69. package/dist/lib/serialization/serializer.d.ts +1 -1
  70. package/dist/lib/utils/component.js +0 -3
  71. package/dist/lib/utils/events.js +0 -1
  72. package/dist/lib/utils/general.d.ts +1 -0
  73. package/dist/lib/utils/general.js +5 -0
  74. package/dist/lib/utils/html-entities.json +2324 -2231
  75. package/dist/lib/utils/html.d.ts +59 -1
  76. package/dist/lib/utils/html.js +577 -19
  77. package/dist/lib/utils/options/declaration.d.ts +1 -0
  78. package/dist/lib/utils/options/help.js +0 -1
  79. package/dist/lib/utils/options/options.js +0 -1
  80. package/dist/lib/utils/options/sources/typedoc.js +6 -0
  81. package/dist/lib/utils/options/tsdoc-defaults.d.ts +1 -1
  82. package/dist/lib/utils/options/tsdoc-defaults.js +5 -1
  83. package/dist/lib/utils/paths.js +11 -1
  84. package/dist/lib/utils/perf.js +3 -1
  85. package/dist/lib/utils/sort.js +4 -13
  86. package/dist/lib/validation/links.d.ts +1 -1
  87. package/dist/lib/validation/links.js +42 -7
  88. package/package.json +5 -7
  89. package/static/main.js +4 -4
  90. package/static/style.css +11 -2
  91. package/dist/lib/converter/utils/base-path.d.ts +0 -36
  92. package/dist/lib/converter/utils/base-path.js +0 -112
  93. package/dist/lib/internationalization/locales/test.cjs +0 -8
  94. package/dist/lib/internationalization/locales/test.d.cts +0 -5
@@ -1,199 +1,209 @@
1
+ import type { blockTags, inlineTags, modifierTags } from "../utils/options/tsdoc-defaults";
1
2
  export declare function buildTranslation<T extends BuiltinTranslatableStringConstraints>(translations: T): T;
2
3
  export declare function buildIncompleteTranslation<T extends Partial<BuiltinTranslatableStringConstraints>>(translations: T): T;
3
4
  export declare const translatable: {
4
5
  readonly loaded_multiple_times_0: "TypeDoc has been loaded multiple times. This is commonly caused by plugins which have their own installation of TypeDoc. The loaded paths are:\n\t{0}";
5
6
  readonly unsupported_ts_version_0: "You are running with an unsupported TypeScript version! If TypeDoc crashes, this is why. TypeDoc supports {0}";
6
- readonly no_compiler_options_set: "No compiler options set. This likely means that TypeDoc did not find your tsconfig.json. Generated documentation will probably be empty.";
7
+ readonly no_compiler_options_set: "No compiler options set. This likely means that TypeDoc did not find your tsconfig.json. Generated documentation will probably be empty";
7
8
  readonly loaded_plugin_0: "Loaded plugin {0}";
8
- readonly solution_not_supported_in_watch_mode: "The provided tsconfig file looks like a solution style tsconfig, which is not supported in watch mode.";
9
- readonly strategy_not_supported_in_watch_mode: "entryPointStrategy must be set to either resolve or expand for watch mode.";
10
- readonly docs_could_not_be_generated: "Documentation could not be generated due to the errors above.";
9
+ readonly solution_not_supported_in_watch_mode: "The provided tsconfig file looks like a solution style tsconfig, which is not supported in watch mode";
10
+ readonly strategy_not_supported_in_watch_mode: "entryPointStrategy must be set to either resolve or expand for watch mode";
11
+ readonly found_0_errors_and_1_warnings: "Found {0} errors and {1} warnings";
12
+ readonly docs_could_not_be_generated: "Documentation could not be generated due to the errors above";
11
13
  readonly docs_generated_at_0: "Documentation generated at {0}";
12
14
  readonly json_written_to_0: "JSON written to {0}";
13
- readonly no_entry_points_for_packages: "No entry points provided to packages mode, documentation cannot be generated.";
15
+ readonly no_entry_points_for_packages: "No entry points provided to packages mode, documentation cannot be generated";
14
16
  readonly failed_to_find_packages: "Failed to find any packages, ensure you have provided at least one directory as an entry point containing package.json";
15
- readonly nested_packages_unsupported_0: "Project at {0} has entryPointStrategy set to packages, but nested packages are not supported.";
17
+ readonly nested_packages_unsupported_0: "Project at {0} has entryPointStrategy set to packages, but nested packages are not supported";
16
18
  readonly previous_error_occurred_when_reading_options_for_0: "The previous error occurred when reading options for the package at {0}";
17
19
  readonly converting_project_at_0: "Converting project at {0}";
18
- readonly failed_to_convert_packages: "Failed to convert one or more packages, result will not be merged together.";
20
+ readonly failed_to_convert_packages: "Failed to convert one or more packages, result will not be merged together";
19
21
  readonly merging_converted_projects: "Merging converted projects";
20
- readonly no_entry_points_to_merge: "No entry points provided to merge.";
21
- readonly entrypoint_did_not_match_files_0: "The entrypoint glob {0} did not match any files.";
22
- readonly failed_to_parse_json_0: "Failed to parse file at {0} as json.";
22
+ readonly no_entry_points_to_merge: "No entry points provided to merge";
23
+ readonly entrypoint_did_not_match_files_0: "The entrypoint glob {0} did not match any files";
24
+ readonly failed_to_parse_json_0: "Failed to parse file at {0} as json";
23
25
  readonly failed_to_read_0_when_processing_document_tag_in_1: "Failed to read file {0} when processing @document tag for comment in {1}";
24
- readonly converting_union_as_interface: "Using @interface on a union type will discard properties not present on all branches of the union. TypeDoc's output may not accurately describe your source code.";
25
- readonly converting_0_as_class_requires_value_declaration: "Converting {0} as a class requires a declaration which represents a non-type value.";
26
+ readonly failed_to_read_0_when_processing_project_document: "Failed to read file {0} when adding project document";
27
+ readonly failed_to_read_0_when_processing_document_child_in_1: "Failed to read file {0} when processing document children in {1}";
28
+ readonly frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "Frontmatter children in {0} should be an array of strings or an object with string values";
29
+ readonly converting_union_as_interface: "Using @interface on a union type will discard properties not present on all branches of the union. TypeDoc's output may not accurately describe your source code";
30
+ readonly converting_0_as_class_requires_value_declaration: "Converting {0} as a class requires a declaration which represents a non-type value";
26
31
  readonly converting_0_as_class_without_construct_signatures: "{0} is being converted as a class, but does not have any construct signatures";
27
- readonly symbol_0_has_multiple_declarations_with_comment: "{0} has multiple declarations with a comment. An arbitrary comment will be used.";
32
+ readonly comment_for_0_should_not_contain_block_or_modifier_tags: "The comment for {0} should not contain any block or modifier tags";
33
+ readonly symbol_0_has_multiple_declarations_with_comment: "{0} has multiple declarations with a comment. An arbitrary comment will be used";
28
34
  readonly comments_for_0_are_declared_at_1: "The comments for {0} are declared at:\n\t{1}";
29
- readonly multiple_type_parameters_on_template_tag_unsupported: "TypeDoc does not support multiple type parameters defined in a single @template tag with a comment.";
30
- readonly failed_to_find_jsdoc_tag_for_name_0: "Failed to find JSDoc tag for {0} after parsing comment, please file a bug report.";
31
- readonly relative_path_0_does_not_exist: "The relative path {0} does not exist.";
35
+ readonly multiple_type_parameters_on_template_tag_unsupported: "TypeDoc does not support multiple type parameters defined in a single @template tag with a comment";
36
+ readonly failed_to_find_jsdoc_tag_for_name_0: "Failed to find JSDoc tag for {0} after parsing comment, please file a bug report";
37
+ readonly relative_path_0_does_not_exist: "The relative path {0} does not exist";
32
38
  readonly inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "An inline @inheritDoc tag should not appear within a block tag as it will not be processed in comment at {0}";
33
39
  readonly at_most_one_remarks_tag_expected_in_comment_at_0: "At most one @remarks tag is expected in a comment, ignoring all but the first in comment at {0}";
34
40
  readonly at_most_one_returns_tag_expected_in_comment_at_0: "At most one @returns tag is expected in a comment, ignoring all but the first in comment at {0}";
35
41
  readonly at_most_one_inheritdoc_tag_expected_in_comment_at_0: "At most one @inheritDoc tag is expected in a comment, ignoring all but the first in comment at {0}";
36
42
  readonly content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "Content in the summary section will be overwritten by the @inheritDoc tag in comment at {0}";
37
43
  readonly content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "Content in the @remarks block will be overwritten by the @inheritDoc tag in comment at {0}";
38
- readonly example_tag_literal_name: "The first line of an example tag will be taken literally as the example name, and should only contain text.";
39
- readonly inheritdoc_tag_properly_capitalized: "The @inheritDoc tag should be properly capitalized.";
40
- readonly treating_unrecognized_tag_0_as_modifier: "Treating unrecognized tag {0} as a modifier tag.";
41
- readonly unmatched_closing_brace: "Unmatched closing brace.";
42
- readonly unescaped_open_brace_without_inline_tag: "Encountered an unescaped open brace without an inline tag.";
43
- readonly unknown_block_tag_0: "Encountered an unknown block tag {0}.";
44
- readonly unknown_inline_tag_0: "Encountered an unknown inline tag {0}.";
45
- readonly open_brace_within_inline_tag: "Encountered an open brace within an inline tag, this is likely a mistake.";
46
- readonly inline_tag_not_closed: "Inline tag is not closed.";
44
+ readonly example_tag_literal_name: "The first line of an example tag will be taken literally as the example name, and should only contain text";
45
+ readonly inheritdoc_tag_properly_capitalized: "The @inheritDoc tag should be properly capitalized";
46
+ readonly treating_unrecognized_tag_0_as_modifier: "Treating unrecognized tag {0} as a modifier tag";
47
+ readonly unmatched_closing_brace: "Unmatched closing brace";
48
+ readonly unescaped_open_brace_without_inline_tag: "Encountered an unescaped open brace without an inline tag";
49
+ readonly unknown_block_tag_0: "Encountered an unknown block tag {0}";
50
+ readonly unknown_inline_tag_0: "Encountered an unknown inline tag {0}";
51
+ readonly open_brace_within_inline_tag: "Encountered an open brace within an inline tag, this is likely a mistake";
52
+ readonly inline_tag_not_closed: "Inline tag is not closed";
47
53
  readonly failed_to_resolve_link_to_0_in_comment_for_1: "Failed to resolve link to \"{0}\" in comment for {1}";
48
- readonly type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{0}, defined in {1}, is referenced by {2} but not included in the documentation.";
49
- readonly reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{0} ({1}), defined in {2}, does not have any documentation.";
54
+ readonly failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: "Failed to resolve link to \"{0}\" in comment for {1}. You may have wanted \"{2}\"";
55
+ readonly failed_to_resolve_link_to_0_in_readme_for_1: "Failed to resolve link to \"{0}\" in readme for {1}";
56
+ readonly failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: "Failed to resolve link to \"{0}\" in readme for {1}. You may have wanted \"{2}\"";
57
+ readonly type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{0}, defined in {1}, is referenced by {2} but not included in the documentation";
58
+ readonly reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{0} ({1}), defined in {2}, does not have any documentation";
50
59
  readonly invalid_intentionally_not_exported_symbols_0: "The following symbols were marked as intentionally not exported, but were either not referenced in the documentation, or were exported:\n\t{0}";
51
60
  readonly not_all_search_category_boosts_used_0: "Not all categories specified in searchCategoryBoosts were used in the documentation. The unused categories were:\n\t{0}";
52
61
  readonly not_all_search_group_boosts_used_0: "Not all groups specified in searchGroupBoosts were used in the documentation. The unused groups were:\n\t{0}";
53
- readonly comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "Comment for {0} includes @categoryDescription for \"{1}\", but no child is placed in that category.";
54
- readonly comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "Comment for {0} includes @groupDescription for \"{1}\", but no child is placed in that group.";
55
- readonly label_0_for_1_cannot_be_referenced: "The label \"{0}\" for {1} cannot be referenced with a declaration reference. Labels may only contain A-Z, 0-9, and _, and may not start with a number.";
56
- readonly modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "The modifier tag {0} is mutually exclusive with {1} in the comment for {2}.";
57
- readonly signature_0_has_unused_param_with_name_1: "The signature {0} has an @param with name \"{1}\", which was not used.";
58
- readonly declaration_reference_in_inheritdoc_for_0_not_fully_parsed: "Declaration reference in @inheritDoc for {0} was not fully parsed and may resolve incorrectly.";
62
+ readonly comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "Comment for {0} includes @categoryDescription for \"{1}\", but no child is placed in that category";
63
+ readonly comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "Comment for {0} includes @groupDescription for \"{1}\", but no child is placed in that group";
64
+ readonly label_0_for_1_cannot_be_referenced: "The label \"{0}\" for {1} cannot be referenced with a declaration reference. Labels may only contain A-Z, 0-9, and _, and may not start with a number";
65
+ readonly modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "The modifier tag {0} is mutually exclusive with {1} in the comment for {2}";
66
+ readonly signature_0_has_unused_param_with_name_1: "The signature {0} has an @param with name \"{1}\", which was not used";
67
+ readonly declaration_reference_in_inheritdoc_for_0_not_fully_parsed: "Declaration reference in @inheritDoc for {0} was not fully parsed and may resolve incorrectly";
59
68
  readonly failed_to_find_0_to_inherit_comment_from_in_1: "Failed to find \"{0}\" to inherit the comment from in the comment for {1}";
60
- readonly reflection_0_tried_to_copy_comment_from_1_but_source_had_no_comment: "{0} tried to copy a comment from {1} with @inheritDoc, but the source has no associated comment.";
69
+ readonly reflection_0_tried_to_copy_comment_from_1_but_source_had_no_comment: "{0} tried to copy a comment from {1} with @inheritDoc, but the source has no associated comment";
61
70
  readonly inheritdoc_circular_inheritance_chain_0: "@inheritDoc specifies a circular inheritance chain: {0}";
62
- readonly provided_readme_at_0_could_not_be_read: "Provided README path, {0} could not be read.";
63
- readonly defaulting_project_name: "The --name option was not specified, and no package.json was found. Defaulting project name to \"Documentation\".";
64
- readonly disable_git_set_but_not_source_link_template: "disableGit is set, but sourceLinkTemplate is not, so source links cannot be produced. Set a sourceLinkTemplate or disableSources to prevent source tracking.";
65
- readonly disable_git_set_and_git_revision_used: "disableGit is set and sourceLinkTemplate contains {gitRevision}, which will be replaced with an empty string as no revision was provided.";
66
- readonly git_remote_0_not_valid: "The provided git remote \"{0}\" was not valid. Source links will be broken.";
67
- readonly custom_css_file_0_does_not_exist: "Custom CSS file at {0} does not exist.";
68
- readonly unsupported_highlight_language_0_not_highlighted_in_comment_for_1: "Unsupported highlight language {0} will not be highlighted in comment for {1}.";
69
- readonly unloaded_language_0_not_highlighted_in_comment_for_1: "Code block with language {0} will not be highlighted in comment for {1} as it was not included in the highlightLanguages option.";
70
- readonly yaml_frontmatter_not_an_object: "Expected YAML frontmatter to be an object.";
71
+ readonly provided_readme_at_0_could_not_be_read: "Provided README path, {0} could not be read";
72
+ readonly defaulting_project_name: "The --name option was not specified, and no package.json was found. Defaulting project name to \"Documentation\"";
73
+ readonly disable_git_set_but_not_source_link_template: "disableGit is set, but sourceLinkTemplate is not, so source links cannot be produced. Set a sourceLinkTemplate or disableSources to prevent source tracking";
74
+ readonly disable_git_set_and_git_revision_used: "disableGit is set and sourceLinkTemplate contains {gitRevision}, which will be replaced with an empty string as no revision was provided";
75
+ readonly git_remote_0_not_valid: "The provided git remote \"{0}\" was not valid. Source links will be broken";
76
+ readonly custom_css_file_0_does_not_exist: "Custom CSS file at {0} does not exist";
77
+ readonly unsupported_highlight_language_0_not_highlighted_in_comment_for_1: "Unsupported highlight language {0} will not be highlighted in comment for {1}";
78
+ readonly unloaded_language_0_not_highlighted_in_comment_for_1: "Code block with language {0} will not be highlighted in comment for {1} as it was not included in the highlightLanguages option";
79
+ readonly yaml_frontmatter_not_an_object: "Expected YAML frontmatter to be an object";
71
80
  readonly could_not_write_0: "Could not write {0}";
72
81
  readonly could_not_empty_output_directory_0: "Could not empty the output directory {0}";
73
82
  readonly could_not_create_output_directory_0: "Could not create the output directory {0}";
74
83
  readonly theme_0_is_not_defined_available_are_1: "The theme '{0}' is not defined. The available themes are: {1}";
75
84
  readonly custom_theme_does_not_define_getSlugger: "Custom theme does not define a getSlugger(reflection) method, but tries to render markdown";
76
- readonly no_entry_points_provided: "No entry points were provided, this is likely a misconfiguration.";
77
- readonly unable_to_find_any_entry_points: "Unable to find any entry points. See previous warnings.";
78
- readonly watch_does_not_support_packages_mode: "Watch mode does not support 'packages' style entry points.";
79
- readonly watch_does_not_support_merge_mode: "Watch mode does not support 'merge' style entry points.";
80
- readonly entry_point_0_not_in_program: "The entry point {0} is not referenced by the 'files' or 'include' option in your tsconfig.";
81
- readonly use_expand_or_glob_for_files_in_dir: "If you wanted to include files inside this directory, set --entryPointStrategy to expand or specify a glob.";
82
- readonly glob_0_did_not_match_any_files: "The glob {0} did not match any files.";
83
- readonly entry_point_0_did_not_match_any_files_after_exclude: "The glob {0} did not match any files after applying exclude patterns.";
84
- readonly entry_point_0_did_not_exist: "Provided entry point {0} does not exist.";
85
- readonly entry_point_0_did_not_match_any_packages: "The entry point glob {0} did not match any directories containing package.json.";
86
- readonly file_0_not_an_object: "The file {0} is not an object.";
87
- readonly serialized_project_referenced_0_not_part_of_project: "Serialized project referenced reflection {0}, which was not a part of the project.";
88
- readonly saved_relative_path_0_resolved_from_1_does_not_exist: "Serialized project referenced {0}, which does not exist relative to {1}.";
85
+ readonly no_entry_points_provided: "No entry points were provided, this is likely a misconfiguration";
86
+ readonly unable_to_find_any_entry_points: "Unable to find any entry points. See previous warnings";
87
+ readonly watch_does_not_support_packages_mode: "Watch mode does not support 'packages' style entry points";
88
+ readonly watch_does_not_support_merge_mode: "Watch mode does not support 'merge' style entry points";
89
+ readonly entry_point_0_not_in_program: "The entry point {0} is not referenced by the 'files' or 'include' option in your tsconfig";
90
+ readonly use_expand_or_glob_for_files_in_dir: "If you wanted to include files inside this directory, set --entryPointStrategy to expand or specify a glob";
91
+ readonly glob_0_did_not_match_any_files: "The glob {0} did not match any files";
92
+ readonly entry_point_0_did_not_match_any_files_after_exclude: "The glob {0} did not match any files after applying exclude patterns";
93
+ readonly entry_point_0_did_not_exist: "Provided entry point {0} does not exist";
94
+ readonly entry_point_0_did_not_match_any_packages: "The entry point glob {0} did not match any directories containing package.json";
95
+ readonly file_0_not_an_object: "The file {0} is not an object";
96
+ readonly serialized_project_referenced_0_not_part_of_project: "Serialized project referenced reflection {0}, which was not a part of the project";
97
+ readonly saved_relative_path_0_resolved_from_1_does_not_exist: "Serialized project referenced {0}, which does not exist relative to {1}";
89
98
  readonly circular_reference_extends_0: "Circular reference encountered for \"extends\" field of {0}";
90
99
  readonly failed_resolve_0_to_file_in_1: "Failed to resolve {0} to a file in {1}";
91
- readonly option_0_can_only_be_specified_by_config_file: "The '{0}' option can only be specified via a config file.";
92
- readonly option_0_expected_a_value_but_none_provided: "--{0} expected a value, but none was given as an argument.";
100
+ readonly option_0_can_only_be_specified_by_config_file: "The '{0}' option can only be specified via a config file";
101
+ readonly option_0_expected_a_value_but_none_provided: "--{0} expected a value, but none was given as an argument";
93
102
  readonly unknown_option_0_may_have_meant_1: "Unknown option: {0}, you may have meant:\n\t{1}";
94
- readonly typedoc_key_in_0_ignored: "The 'typedoc' key in {0} was used by the legacy-packages entryPointStrategy and will be ignored.";
95
- readonly typedoc_options_must_be_object_in_0: "Failed to parse the \"typedocOptions\" field in {0}, ensure it exists and contains an object.";
103
+ readonly typedoc_key_in_0_ignored: "The 'typedoc' key in {0} was used by the legacy-packages entryPointStrategy and will be ignored";
104
+ readonly typedoc_options_must_be_object_in_0: "Failed to parse the \"typedocOptions\" field in {0}, ensure it exists and contains an object";
96
105
  readonly tsconfig_file_0_does_not_exist: "The tsconfig file {0} does not exist";
97
- readonly tsconfig_file_specifies_options_file: "\"typedocOptions\" in tsconfig file specifies an option file to read but the option file has already been read. This is likely a misconfiguration.";
98
- readonly tsconfig_file_specifies_tsconfig_file: "\"typedocOptions\" in tsconfig file may not specify a tsconfig file to read.";
99
- readonly tags_0_defined_in_typedoc_json_overwritten_by_tsdoc_json: "The {0} defined in typedoc.json will be overwritten by configuration in tsdoc.json.";
100
- readonly failed_read_tsdoc_json_0: "Failed to read tsdoc.json file at {0}.";
101
- readonly invalid_tsdoc_json_0: "The file {0} is not a valid tsdoc.json file.";
102
- readonly options_file_0_does_not_exist: "The options file {0} does not exist.";
103
- readonly failed_read_options_file_0: "Failed to parse {0}, ensure it exists and exports an object.";
104
- readonly invalid_plugin_0_missing_load_function: "Invalid structure in plugin {0}, no load function found.";
105
- readonly plugin_0_could_not_be_loaded: "The plugin {0} could not be loaded.";
106
- readonly help_options: "Specify a json option file that should be loaded. If not specified TypeDoc will look for 'typedoc.json' in the current directory.";
107
- readonly help_tsconfig: "Specify a TypeScript config file that should be loaded. If not specified TypeDoc will look for 'tsconfig.json' in the current directory.";
108
- readonly help_compilerOptions: "Selectively override the TypeScript compiler options used by TypeDoc.";
109
- readonly help_lang: "Sets the language to be used in generation and in TypeDoc's messages.";
110
- readonly help_locales: "Add translations for a specified locale. This option is primarily intended to be used as a stopgap while waiting for official locale support to be added to TypeDoc.";
111
- readonly help_packageOptions: "Set options which will be set within each package when entryPointStrategy is set to packages.";
112
- readonly help_entryPoints: "The entry points of your documentation.";
113
- readonly help_entryPointStrategy: "The strategy to be used to convert entry points into documentation modules.";
114
- readonly help_alwaysCreateEntryPointModule: "When set, TypeDoc will always create a `Module` for entry points, even if only one is provided.";
115
- readonly help_projectDocuments: "Documents which should be added as children to the root of the generated documentation. Supports globs to match multiple files.";
116
- readonly help_exclude: "Define patterns to be excluded when expanding a directory that was specified as an entry point.";
117
- readonly help_externalPattern: "Define patterns for files that should be considered being external.";
118
- readonly help_excludeExternals: "Prevent externally resolved symbols from being documented.";
119
- readonly help_excludeNotDocumented: "Prevent symbols that are not explicitly documented from appearing in the results.";
120
- readonly help_excludeNotDocumentedKinds: "Specify the type of reflections that can be removed by excludeNotDocumented.";
121
- readonly help_excludeInternal: "Prevent symbols that are marked with @internal from being documented.";
122
- readonly help_excludeCategories: "Exclude symbols within this category from the documentation.";
123
- readonly help_excludePrivate: "Ignore private variables and methods, defaults to true..";
124
- readonly help_excludeProtected: "Ignore protected variables and methods.";
125
- readonly help_excludeReferences: "If a symbol is exported multiple times, ignore all but the first export.";
126
- readonly help_externalSymbolLinkMappings: "Define custom links for symbols not included in the documentation.";
127
- readonly help_out: "Specify the location the documentation should be written to.";
128
- readonly help_json: "Specify the location and filename a JSON file describing the project is written to.";
129
- readonly help_pretty: "Specify whether the output JSON should be formatted with tabs.";
130
- readonly help_emit: "Specify what TypeDoc should emit, 'docs', 'both', or 'none'.";
106
+ readonly tsconfig_file_specifies_options_file: "\"typedocOptions\" in tsconfig file specifies an option file to read but the option file has already been read. This is likely a misconfiguration";
107
+ readonly tsconfig_file_specifies_tsconfig_file: "\"typedocOptions\" in tsconfig file may not specify a tsconfig file to read";
108
+ readonly tags_0_defined_in_typedoc_json_overwritten_by_tsdoc_json: "The {0} defined in typedoc.json will be overwritten by configuration in tsdoc.json";
109
+ readonly failed_read_tsdoc_json_0: "Failed to read tsdoc.json file at {0}";
110
+ readonly invalid_tsdoc_json_0: "The file {0} is not a valid tsdoc.json file";
111
+ readonly options_file_0_does_not_exist: "The options file {0} does not exist";
112
+ readonly failed_read_options_file_0: "Failed to parse {0}, ensure it exists and exports an object";
113
+ readonly invalid_plugin_0_missing_load_function: "Invalid structure in plugin {0}, no load function found";
114
+ readonly plugin_0_could_not_be_loaded: "The plugin {0} could not be loaded";
115
+ readonly help_options: "Specify a json option file that should be loaded. If not specified TypeDoc will look for 'typedoc.json' in the current directory";
116
+ readonly help_tsconfig: "Specify a TypeScript config file that should be loaded. If not specified TypeDoc will look for 'tsconfig.json' in the current directory";
117
+ readonly help_compilerOptions: "Selectively override the TypeScript compiler options used by TypeDoc";
118
+ readonly help_lang: "Sets the language to be used in generation and in TypeDoc's messages";
119
+ readonly help_locales: "Add translations for a specified locale. This option is primarily intended to be used as a stopgap while waiting for official locale support to be added to TypeDoc";
120
+ readonly help_packageOptions: "Set options which will be set within each package when entryPointStrategy is set to packages";
121
+ readonly help_entryPoints: "The entry points of your documentation";
122
+ readonly help_entryPointStrategy: "The strategy to be used to convert entry points into documentation modules";
123
+ readonly help_alwaysCreateEntryPointModule: "When set, TypeDoc will always create a `Module` for entry points, even if only one is provided";
124
+ readonly help_projectDocuments: "Documents which should be added as children to the root of the generated documentation. Supports globs to match multiple files";
125
+ readonly help_exclude: "Define patterns to be excluded when expanding a directory that was specified as an entry point";
126
+ readonly help_externalPattern: "Define patterns for files that should be considered being external";
127
+ readonly help_excludeExternals: "Prevent externally resolved symbols from being documented";
128
+ readonly help_excludeNotDocumented: "Prevent symbols that are not explicitly documented from appearing in the results";
129
+ readonly help_excludeNotDocumentedKinds: "Specify the type of reflections that can be removed by excludeNotDocumented";
130
+ readonly help_excludeInternal: "Prevent symbols that are marked with @internal from being documented";
131
+ readonly help_excludeCategories: "Exclude symbols within this category from the documentation";
132
+ readonly help_excludePrivate: "Ignore private variables and methods, defaults to true.";
133
+ readonly help_excludeProtected: "Ignore protected variables and methods";
134
+ readonly help_excludeReferences: "If a symbol is exported multiple times, ignore all but the first export";
135
+ readonly help_externalSymbolLinkMappings: "Define custom links for symbols not included in the documentation";
136
+ readonly help_out: "Specify the location the documentation should be written to";
137
+ readonly help_json: "Specify the location and filename a JSON file describing the project is written to";
138
+ readonly help_pretty: "Specify whether the output JSON should be formatted with tabs";
139
+ readonly help_emit: "Specify what TypeDoc should emit, 'docs', 'both', or 'none'";
131
140
  readonly help_theme: "Specify the theme name to render the documentation with";
132
- readonly help_lightHighlightTheme: "Specify the code highlighting theme in light mode.";
133
- readonly help_darkHighlightTheme: "Specify the code highlighting theme in dark mode.";
134
- readonly help_highlightLanguages: "Specify the languages which will be loaded to highlight code when rendering.";
135
- readonly help_customCss: "Path to a custom CSS file to for the theme to import.";
136
- readonly help_markdownItOptions: "Specify the options passed to markdown-it, the Markdown parser used by TypeDoc.";
137
- readonly help_markdownItLoader: "Specify a callback to be called when loading the markdown-it instance. Will be passed the instance of the parser which TypeDoc will use.";
138
- readonly help_maxTypeConversionDepth: "Set the maximum depth of types to be converted.";
139
- readonly help_name: "Set the name of the project that will be used in the header of the template.";
140
- readonly help_includeVersion: "Add the package version to the project name.";
141
- readonly help_disableSources: "Disable setting the source of a reflection when documenting it.";
142
- readonly help_sourceLinkTemplate: "Specify a link template to be used when generating source urls. If not set, will be automatically created using the git remote. Supports {path}, {line}, {gitRevision} placeholders.";
143
- readonly help_gitRevision: "Use specified revision instead of the last revision for linking to GitHub/Bitbucket source files. Has no effect if disableSources is set.";
144
- readonly help_gitRemote: "Use the specified remote for linking to GitHub/Bitbucket source files. Has no effect if disableGit or disableSources is set.";
141
+ readonly help_lightHighlightTheme: "Specify the code highlighting theme in light mode";
142
+ readonly help_darkHighlightTheme: "Specify the code highlighting theme in dark mode";
143
+ readonly help_highlightLanguages: "Specify the languages which will be loaded to highlight code when rendering";
144
+ readonly help_customCss: "Path to a custom CSS file to for the theme to import";
145
+ readonly help_markdownItOptions: "Specify the options passed to markdown-it, the Markdown parser used by TypeDoc";
146
+ readonly help_markdownItLoader: "Specify a callback to be called when loading the markdown-it instance. Will be passed the instance of the parser which TypeDoc will use";
147
+ readonly help_maxTypeConversionDepth: "Set the maximum depth of types to be converted";
148
+ readonly help_name: "Set the name of the project that will be used in the header of the template";
149
+ readonly help_includeVersion: "Add the package version to the project name";
150
+ readonly help_disableSources: "Disable setting the source of a reflection when documenting it";
151
+ readonly help_sourceLinkTemplate: "Specify a link template to be used when generating source urls. If not set, will be automatically created using the git remote. Supports {path}, {line}, {gitRevision} placeholders";
152
+ readonly help_gitRevision: "Use specified revision instead of the last revision for linking to GitHub/Bitbucket source files. Has no effect if disableSources is set";
153
+ readonly help_gitRemote: "Use the specified remote for linking to GitHub/Bitbucket source files. Has no effect if disableGit or disableSources is set";
145
154
  readonly help_disableGit: "Assume that all can be linked to with the sourceLinkTemplate, sourceLinkTemplate must be set if this is enabled. {path} will be rooted at basePath";
146
- readonly help_basePath: "Specifies the base path to be used when displaying file paths.";
147
- readonly help_excludeTags: "Remove the listed block/modifier tags from doc comments.";
148
- readonly help_readme: "Path to the readme file that should be displayed on the index page. Pass `none` to disable the index page and start the documentation on the globals page.";
149
- readonly help_cname: "Set the CNAME file text, it's useful for custom domains on GitHub Pages.";
150
- readonly help_sourceLinkExternal: "Specifies that source links should be treated as external links to be opened in a new tab.";
151
- readonly help_githubPages: "Generate a .nojekyll file to prevent 404 errors in GitHub Pages. Defaults to `true`.";
152
- readonly help_hostedBaseUrl: "Specify a base URL to be used in generating a sitemap.xml in our output folder and canonical links. If not specified, no sitemap will be generated.";
153
- readonly help_gaID: "Set the Google Analytics tracking ID and activate tracking code.";
154
- readonly help_hideGenerator: "Do not print the TypeDoc link at the end of the page.";
155
- readonly help_customFooterHtml: "Custom footer after the TypeDoc link.";
156
- readonly help_customFooterHtmlDisableWrapper: "If set, disables the wrapper element for customFooterHtml.";
157
- readonly help_hideParameterTypesInTitle: "Hides parameter types in signature titles for easier scanning.";
158
- readonly help_cacheBust: "Include the generation time in links to static assets.";
159
- readonly help_searchInComments: "If set, the search index will also include comments. This will greatly increase the size of the search index.";
160
- readonly help_searchInDocuments: "If set, the search index will also include documents. This will greatly increase the size of the search index.";
161
- readonly help_cleanOutputDir: "If set, TypeDoc will remove the output directory before writing output.";
162
- readonly help_titleLink: "Set the link the title in the header points to. Defaults to the documentation homepage.";
163
- readonly help_navigationLinks: "Defines links to be included in the header.";
164
- readonly help_sidebarLinks: "Defines links to be included in the sidebar.";
165
- readonly help_navigationLeaves: "Branches of the navigation tree which should not be expanded.";
166
- readonly help_navigation: "Determines how the navigation sidebar is organized.";
167
- readonly help_visibilityFilters: "Specify the default visibility for builtin filters and additional filters according to modifier tags.";
155
+ readonly help_basePath: "Specifies the base path to be used when displaying file paths";
156
+ readonly help_excludeTags: "Remove the listed block/modifier tags from doc comments";
157
+ readonly help_readme: "Path to the readme file that should be displayed on the index page. Pass `none` to disable the index page and start the documentation on the globals page";
158
+ readonly help_cname: "Set the CNAME file text, it's useful for custom domains on GitHub Pages";
159
+ readonly help_sourceLinkExternal: "Specifies that source links should be treated as external links to be opened in a new tab";
160
+ readonly help_githubPages: "Generate a .nojekyll file to prevent 404 errors in GitHub Pages. Defaults to `true`";
161
+ readonly help_hostedBaseUrl: "Specify a base URL to be used in generating a sitemap.xml in our output folder and canonical links. If not specified, no sitemap will be generated";
162
+ readonly help_useHostedBaseUrlForAbsoluteLinks: "If set, TypeDoc will produce absolute links to pages on your site using the hostedBaseUrl option";
163
+ readonly help_gaID: "Set the Google Analytics tracking ID and activate tracking code";
164
+ readonly help_hideGenerator: "Do not print the TypeDoc link at the end of the page";
165
+ readonly help_customFooterHtml: "Custom footer after the TypeDoc link";
166
+ readonly help_customFooterHtmlDisableWrapper: "If set, disables the wrapper element for customFooterHtml";
167
+ readonly help_hideParameterTypesInTitle: "Hides parameter types in signature titles for easier scanning";
168
+ readonly help_cacheBust: "Include the generation time in links to static assets";
169
+ readonly help_searchInComments: "If set, the search index will also include comments. This will greatly increase the size of the search index";
170
+ readonly help_searchInDocuments: "If set, the search index will also include documents. This will greatly increase the size of the search index";
171
+ readonly help_cleanOutputDir: "If set, TypeDoc will remove the output directory before writing output";
172
+ readonly help_titleLink: "Set the link the title in the header points to. Defaults to the documentation homepage";
173
+ readonly help_navigationLinks: "Defines links to be included in the header";
174
+ readonly help_sidebarLinks: "Defines links to be included in the sidebar";
175
+ readonly help_navigationLeaves: "Branches of the navigation tree which should not be expanded";
176
+ readonly help_navigation: "Determines how the navigation sidebar is organized";
177
+ readonly help_visibilityFilters: "Specify the default visibility for builtin filters and additional filters according to modifier tags";
168
178
  readonly help_searchCategoryBoosts: "Configure search to give a relevance boost to selected categories";
169
179
  readonly help_searchGroupBoosts: "Configure search to give a relevance boost to selected kinds (eg \"class\")";
170
- readonly help_jsDocCompatibility: "Sets compatibility options for comment parsing that increase similarity with JSDoc comments.";
171
- readonly help_commentStyle: "Determines how TypeDoc searches for comments.";
172
- readonly help_useTsLinkResolution: "Use TypeScript's link resolution when determining where @link tags point. This only applies to JSDoc style comments.";
173
- readonly help_preserveLinkText: "If set, @link tags without link text will use the text content as the link. If not set, will use the target reflection name.";
174
- readonly help_blockTags: "Block tags which TypeDoc should recognize when parsing comments.";
175
- readonly help_inlineTags: "Inline tags which TypeDoc should recognize when parsing comments.";
176
- readonly help_modifierTags: "Modifier tags which TypeDoc should recognize when parsing comments.";
177
- readonly help_categorizeByGroup: "Specify whether categorization will be done at the group level.";
178
- readonly help_defaultCategory: "Specify the default category for reflections without a category.";
179
- readonly help_categoryOrder: "Specify the order in which categories appear. * indicates the relative order for categories not in the list.";
180
- readonly help_groupOrder: "Specify the order in which groups appear. * indicates the relative order for groups not in the list.";
181
- readonly help_sort: "Specify the sort strategy for documented values.";
182
- readonly help_sortEntryPoints: "If set, entry points will be subject to the same sorting rules as other reflections.";
183
- readonly help_kindSortOrder: "Specify the sort order for reflections when 'kind' is specified.";
184
- readonly help_watch: "Watch files for changes and rebuild docs on change.";
185
- readonly help_preserveWatchOutput: "If set, TypeDoc will not clear the screen between compilation runs.";
186
- readonly help_skipErrorChecking: "Do not run TypeScript's type checking before generating docs.";
187
- readonly help_help: "Print this message.";
188
- readonly help_version: "Print TypeDoc's version.";
189
- readonly help_showConfig: "Print the resolved configuration and exit.";
190
- readonly help_plugin: "Specify the npm plugins that should be loaded. Omit to load all installed plugins.";
191
- readonly help_logLevel: "Specify what level of logging should be used.";
192
- readonly help_treatWarningsAsErrors: "If set, all warnings will be treated as errors.";
193
- readonly help_treatValidationWarningsAsErrors: "If set, warnings emitted during validation will be treated as errors. This option cannot be used to disable treatWarningsAsErrors for validation warnings.";
194
- readonly help_intentionallyNotExported: "A list of types which should not produce 'referenced but not documented' warnings.";
180
+ readonly help_jsDocCompatibility: "Sets compatibility options for comment parsing that increase similarity with JSDoc comments";
181
+ readonly help_commentStyle: "Determines how TypeDoc searches for comments";
182
+ readonly help_useTsLinkResolution: "Use TypeScript's link resolution when determining where @link tags point. This only applies to JSDoc style comments";
183
+ readonly help_preserveLinkText: "If set, @link tags without link text will use the text content as the link. If not set, will use the target reflection name";
184
+ readonly help_blockTags: "Block tags which TypeDoc should recognize when parsing comments";
185
+ readonly help_inlineTags: "Inline tags which TypeDoc should recognize when parsing comments";
186
+ readonly help_modifierTags: "Modifier tags which TypeDoc should recognize when parsing comments";
187
+ readonly help_categorizeByGroup: "Specify whether categorization will be done at the group level";
188
+ readonly help_defaultCategory: "Specify the default category for reflections without a category";
189
+ readonly help_categoryOrder: "Specify the order in which categories appear. * indicates the relative order for categories not in the list";
190
+ readonly help_groupOrder: "Specify the order in which groups appear. * indicates the relative order for groups not in the list";
191
+ readonly help_sort: "Specify the sort strategy for documented values";
192
+ readonly help_sortEntryPoints: "If set, entry points will be subject to the same sorting rules as other reflections";
193
+ readonly help_kindSortOrder: "Specify the sort order for reflections when 'kind' is specified";
194
+ readonly help_watch: "Watch files for changes and rebuild docs on change";
195
+ readonly help_preserveWatchOutput: "If set, TypeDoc will not clear the screen between compilation runs";
196
+ readonly help_skipErrorChecking: "Do not run TypeScript's type checking before generating docs";
197
+ readonly help_help: "Print this message";
198
+ readonly help_version: "Print TypeDoc's version";
199
+ readonly help_showConfig: "Print the resolved configuration and exit";
200
+ readonly help_plugin: "Specify the npm plugins that should be loaded. Omit to load all installed plugins";
201
+ readonly help_logLevel: "Specify what level of logging should be used";
202
+ readonly help_treatWarningsAsErrors: "If set, all warnings will be treated as errors";
203
+ readonly help_treatValidationWarningsAsErrors: "If set, warnings emitted during validation will be treated as errors. This option cannot be used to disable treatWarningsAsErrors for validation warnings";
204
+ readonly help_intentionallyNotExported: "A list of types which should not produce 'referenced but not documented' warnings";
195
205
  readonly help_requiredToBeDocumented: "A list of reflection kinds that must be documented";
196
- readonly help_validation: "Specify which validation steps TypeDoc should perform on your generated documentation.";
206
+ readonly help_validation: "Specify which validation steps TypeDoc should perform on your generated documentation";
197
207
  readonly unknown_option_0_you_may_have_meant_1: "Unknown option '{0}' You may have meant:\n\t{1}";
198
208
  readonly option_0_must_be_between_1_and_2: "{0} must be between {1} and {2}";
199
209
  readonly option_0_must_be_equal_to_or_greater_than_1: "{0} must be equal to or greater than {1}";
@@ -201,21 +211,22 @@ export declare const translatable: {
201
211
  readonly option_0_must_be_one_of_1: "{0} must be one of {1}";
202
212
  readonly flag_0_is_not_valid_for_1_expected_2: "The flag '{0}' is not valid for {1}, expected one of {2}";
203
213
  readonly expected_object_with_flag_values_for_0: "Expected an object with flag values for {0} or true/false";
204
- readonly flag_values_for_0_must_be_booleans: "Flag values for {0} must be a boolean.";
214
+ readonly flag_values_for_0_must_be_booleans: "Flag values for {0} must be a boolean";
205
215
  readonly locales_must_be_an_object: "The 'locales' option must be set to an object which resembles: { en: { theme_implements: \"Implements\" }}";
206
216
  readonly exclude_not_documented_specified_0_valid_values_are_1: "excludeNotDocumentedKinds may only specify known values, and invalid values were provided ({0}). The valid kinds are:\n{1}";
207
217
  readonly external_symbol_link_mappings_must_be_object: "externalSymbolLinkMappings must be a Record<package name, Record<symbol name, link>>";
208
218
  readonly highlight_theme_0_must_be_one_of_1: "{0} must be one of the following: {1}";
209
- readonly highlightLanguages_contains_invalid_languages_0: "highlightLanguages contains invalid languages: {0}, run typedoc --help for a list of supported languages.";
219
+ readonly highlightLanguages_contains_invalid_languages_0: "highlightLanguages contains invalid languages: {0}, run typedoc --help for a list of supported languages";
210
220
  readonly hostedBaseUrl_must_start_with_http: "hostedBaseUrl must start with http:// or https://";
211
- readonly option_0_must_be_an_object: "The '{0}' option must be a non-array object.";
212
- readonly option_0_must_be_a_function: "The '{0}' option must be a function.";
213
- readonly option_0_must_be_object_with_urls: "{0} must be an object with string labels as keys and URL values.";
221
+ readonly useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: "The useHostedBaseUrlForAbsoluteLinks option requires that hostedBaseUrl be set";
222
+ readonly option_0_must_be_an_object: "The '{0}' option must be a non-array object";
223
+ readonly option_0_must_be_a_function: "The '{0}' option must be a function";
224
+ readonly option_0_must_be_object_with_urls: "{0} must be an object with string labels as keys and URL values";
214
225
  readonly visibility_filters_only_include_0: "visibilityFilters can only include the following non-@ keys: {0}";
215
- readonly visibility_filters_must_be_booleans: "All values of visibilityFilters must be booleans.";
226
+ readonly visibility_filters_must_be_booleans: "All values of visibilityFilters must be booleans";
216
227
  readonly option_0_values_must_be_numbers: "All values of {0} must be numbers";
217
- readonly option_0_values_must_be_array_of_tags: "{0} must be an array of valid tag names.";
218
- readonly option_0_specified_1_but_only_2_is_valid: "{0} may only specify known values, and invalid values were provided ({0}). The valid sort strategies are:\n{1}";
228
+ readonly option_0_values_must_be_array_of_tags: "{0} must be an array of valid tag names";
229
+ readonly option_0_specified_1_but_only_2_is_valid: "{0} may only specify known values, and invalid values were provided ({1}). The valid sort strategies are:\n{2}";
219
230
  readonly kind_project: "Project";
220
231
  readonly kind_module: "Module";
221
232
  readonly kind_namespace: "Namespace";
@@ -264,6 +275,17 @@ export declare const translatable: {
264
275
  readonly kind_plural_type_alias: "Type Aliases";
265
276
  readonly kind_plural_reference: "References";
266
277
  readonly kind_plural_document: "Documents";
278
+ readonly flag_private: "Private";
279
+ readonly flag_protected: "Protected";
280
+ readonly flag_public: "Public";
281
+ readonly flag_static: "Static";
282
+ readonly flag_external: "External";
283
+ readonly flag_optional: "Optional";
284
+ readonly flag_rest: "Rest";
285
+ readonly flag_abstract: "Abstract";
286
+ readonly flag_const: "Const";
287
+ readonly flag_readonly: "Readonly";
288
+ readonly flag_inherited: "Inherited";
267
289
  readonly theme_implements: "Implements";
268
290
  readonly theme_indexable: "Indexable";
269
291
  readonly theme_type_declaration: "Type declaration";
@@ -294,7 +316,8 @@ export declare const translatable: {
294
316
  };
295
317
  export type BuiltinTranslatableStringArgs = {
296
318
  [K in keyof typeof translatable]: BuildTranslationArguments<(typeof translatable)[K]>;
297
- };
319
+ } & Record<(typeof blockTags)[number] | (typeof inlineTags)[number] | (typeof modifierTags)[number] extends `@${infer T}` ? `tag_${T}` : never, [
320
+ ]>;
298
321
  type BuildTranslationArguments<T extends string, Acc extends any[] = []> = T extends `${string}{${bigint}}${infer R}` ? BuildTranslationArguments<R, [...Acc, string]> : Acc;
299
322
  export type BuiltinTranslatableStringConstraints = {
300
323
  [K in keyof BuiltinTranslatableStringArgs]: TranslationConstraint[BuiltinTranslatableStringArgs[K]["length"]];