typedoc 0.26.11 → 0.27.0-beta.0
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.
- package/bin/package.json +3 -0
- package/bin/typedoc +1 -1
- package/dist/index.d.ts +23 -13
- package/dist/index.js +22 -81
- package/dist/lib/application-events.js +1 -4
- package/dist/lib/application.d.ts +26 -16
- package/dist/lib/application.js +222 -242
- package/dist/lib/cli.js +3 -40
- package/dist/lib/converter/comments/blockLexer.d.ts +1 -1
- package/dist/lib/converter/comments/blockLexer.js +24 -30
- package/dist/lib/converter/comments/declarationReference.js +10 -21
- package/dist/lib/converter/comments/declarationReferenceResolver.d.ts +2 -2
- package/dist/lib/converter/comments/declarationReferenceResolver.js +40 -36
- package/dist/lib/converter/comments/discovery.d.ts +4 -4
- package/dist/lib/converter/comments/discovery.js +154 -172
- package/dist/lib/converter/comments/index.d.ts +4 -4
- package/dist/lib/converter/comments/index.js +39 -50
- package/dist/lib/converter/comments/lexer.d.ts +1 -1
- package/dist/lib/converter/comments/lexer.js +2 -5
- package/dist/lib/converter/comments/lineLexer.d.ts +1 -1
- package/dist/lib/converter/comments/lineLexer.js +12 -15
- package/dist/lib/converter/comments/linkResolver.d.ts +2 -2
- package/dist/lib/converter/comments/linkResolver.js +14 -21
- package/dist/lib/converter/comments/parser.d.ts +6 -6
- package/dist/lib/converter/comments/parser.js +69 -96
- package/dist/lib/converter/comments/rawLexer.d.ts +1 -1
- package/dist/lib/converter/comments/rawLexer.js +13 -16
- package/dist/lib/converter/comments/tagName.js +1 -4
- package/dist/lib/converter/comments/textParser.d.ts +4 -4
- package/dist/lib/converter/comments/textParser.js +28 -30
- package/dist/lib/converter/components.d.ts +2 -3
- package/dist/lib/converter/components.js +2 -7
- package/dist/lib/converter/context.d.ts +9 -9
- package/dist/lib/converter/context.js +54 -44
- package/dist/lib/converter/convert-expression.js +16 -23
- package/dist/lib/converter/converter-events.d.ts +1 -0
- package/dist/lib/converter/converter-events.js +2 -4
- package/dist/lib/converter/converter.d.ts +16 -13
- package/dist/lib/converter/converter.js +210 -238
- package/dist/lib/converter/factories/index-signature.d.ts +1 -1
- package/dist/lib/converter/factories/index-signature.js +11 -17
- package/dist/lib/converter/factories/signature.d.ts +2 -2
- package/dist/lib/converter/factories/signature.js +95 -106
- package/dist/lib/converter/index.d.ts +6 -7
- package/dist/lib/converter/index.js +3 -11
- package/dist/lib/converter/jsdoc.d.ts +1 -1
- package/dist/lib/converter/jsdoc.js +34 -41
- package/dist/lib/converter/plugins/CategoryPlugin.d.ts +6 -21
- package/dist/lib/converter/plugins/CategoryPlugin.js +57 -139
- package/dist/lib/converter/plugins/CommentPlugin.d.ts +3 -5
- package/dist/lib/converter/plugins/CommentPlugin.js +153 -163
- package/dist/lib/converter/plugins/GroupPlugin.d.ts +10 -9
- package/dist/lib/converter/plugins/GroupPlugin.js +87 -124
- package/dist/lib/converter/plugins/ImplementsPlugin.d.ts +3 -5
- package/dist/lib/converter/plugins/ImplementsPlugin.js +255 -321
- package/dist/lib/converter/plugins/IncludePlugin.d.ts +11 -0
- package/dist/lib/converter/plugins/IncludePlugin.js +72 -0
- package/dist/lib/converter/plugins/InheritDocPlugin.d.ts +4 -3
- package/dist/lib/converter/plugins/InheritDocPlugin.js +41 -72
- package/dist/lib/converter/plugins/LinkResolverPlugin.d.ts +5 -5
- package/dist/lib/converter/plugins/LinkResolverPlugin.js +37 -58
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.d.ts +12 -0
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.js +49 -0
- package/dist/lib/converter/plugins/PackagePlugin.d.ts +4 -3
- package/dist/lib/converter/plugins/PackagePlugin.js +62 -111
- package/dist/lib/converter/plugins/SourcePlugin.d.ts +3 -5
- package/dist/lib/converter/plugins/SourcePlugin.js +69 -110
- package/dist/lib/converter/plugins/TypePlugin.d.ts +4 -6
- package/dist/lib/converter/plugins/TypePlugin.js +95 -158
- package/dist/lib/converter/plugins/index.d.ts +10 -9
- package/dist/lib/converter/plugins/index.js +10 -21
- package/dist/lib/converter/symbols.d.ts +1 -1
- package/dist/lib/converter/symbols.js +234 -227
- package/dist/lib/converter/types.d.ts +2 -2
- package/dist/lib/converter/types.js +252 -237
- package/dist/lib/converter/utils/nodes.js +5 -13
- package/dist/lib/converter/utils/reflections.d.ts +1 -1
- package/dist/lib/converter/utils/reflections.js +4 -7
- package/dist/lib/converter/utils/repository.d.ts +1 -1
- package/dist/lib/converter/utils/repository.js +103 -97
- package/dist/lib/converter/utils/symbols.js +3 -9
- package/dist/lib/internationalization/index.d.ts +3 -4
- package/dist/lib/internationalization/index.js +3 -8
- package/dist/lib/internationalization/internationalization.d.ts +5 -4
- package/dist/lib/internationalization/internationalization.js +97 -103
- package/dist/lib/internationalization/locale-utils.cjs +8 -0
- package/dist/lib/internationalization/locale-utils.d.cts +8 -0
- package/dist/lib/internationalization/locales/en.cjs +366 -2
- package/dist/lib/internationalization/locales/en.d.cts +339 -2
- package/dist/lib/internationalization/locales/jp.cjs +8 -11
- package/dist/lib/internationalization/locales/jp.d.cts +310 -1
- package/dist/lib/internationalization/locales/ko.cjs +7 -9
- package/dist/lib/internationalization/locales/ko.d.cts +223 -1
- package/dist/lib/internationalization/locales/zh.cjs +7 -10
- package/dist/lib/internationalization/locales/zh.d.cts +381 -1
- package/dist/lib/internationalization/translatable.d.ts +4 -327
- package/dist/lib/internationalization/translatable.js +2 -360
- package/dist/lib/models/FileRegistry.d.ts +20 -9
- package/dist/lib/models/FileRegistry.js +54 -45
- package/dist/lib/models/ReflectionCategory.d.ts +2 -2
- package/dist/lib/models/ReflectionCategory.js +16 -12
- package/dist/lib/models/ReflectionGroup.d.ts +3 -3
- package/dist/lib/models/ReflectionGroup.js +23 -14
- package/dist/lib/models/comments/comment.d.ts +23 -37
- package/dist/lib/models/comments/comment.js +388 -325
- package/dist/lib/models/comments/index.d.ts +2 -2
- package/dist/lib/models/comments/index.js +1 -6
- package/dist/lib/models/index.d.ts +7 -7
- package/dist/lib/models/index.js +7 -23
- package/dist/lib/models/reflections/ReflectionSymbolId.d.ts +2 -2
- package/dist/lib/models/reflections/ReflectionSymbolId.js +42 -34
- package/dist/lib/models/reflections/abstract.d.ts +17 -20
- package/dist/lib/models/reflections/abstract.js +249 -256
- package/dist/lib/models/reflections/container.d.ts +7 -7
- package/dist/lib/models/reflections/container.js +43 -16
- package/dist/lib/models/reflections/declaration.d.ts +15 -12
- package/dist/lib/models/reflections/declaration.js +150 -29
- package/dist/lib/models/reflections/document.d.ts +3 -3
- package/dist/lib/models/reflections/document.js +26 -13
- package/dist/lib/models/reflections/index.d.ts +15 -15
- package/dist/lib/models/reflections/index.js +12 -31
- package/dist/lib/models/reflections/kind.d.ts +1 -1
- package/dist/lib/models/reflections/kind.js +3 -6
- package/dist/lib/models/reflections/parameter.d.ts +5 -4
- package/dist/lib/models/reflections/parameter.js +11 -13
- package/dist/lib/models/reflections/project.d.ts +14 -9
- package/dist/lib/models/reflections/project.js +104 -56
- package/dist/lib/models/reflections/reference.d.ts +3 -3
- package/dist/lib/models/reflections/reference.js +6 -9
- package/dist/lib/models/reflections/signature.d.ts +8 -8
- package/dist/lib/models/reflections/signature.js +35 -14
- package/dist/lib/models/reflections/type-parameter.d.ts +5 -5
- package/dist/lib/models/reflections/type-parameter.js +9 -10
- package/dist/lib/models/reflections/utils.js +1 -4
- package/dist/lib/models/reflections/variant.d.ts +8 -7
- package/dist/lib/models/reflections/variant.js +1 -2
- package/dist/lib/models/sources/file.d.ts +2 -2
- package/dist/lib/models/sources/file.js +22 -5
- package/dist/lib/models/sources/index.d.ts +1 -1
- package/dist/lib/models/sources/index.js +1 -5
- package/dist/lib/models/types.d.ts +26 -13
- package/dist/lib/models/types.js +236 -151
- package/dist/lib/output/components.d.ts +5 -11
- package/dist/lib/output/components.js +84 -125
- package/dist/lib/output/events.d.ts +3 -3
- package/dist/lib/output/events.js +128 -94
- package/dist/lib/output/formatter.d.ts +84 -0
- package/dist/lib/output/formatter.js +619 -0
- package/dist/lib/output/index.d.ts +9 -8
- package/dist/lib/output/index.js +7 -19
- package/dist/lib/output/models/UrlMapping.d.ts +2 -2
- package/dist/lib/output/models/UrlMapping.js +4 -5
- package/dist/lib/output/output.d.ts +13 -0
- package/dist/lib/output/output.js +72 -0
- package/dist/lib/output/plugins/AssetsPlugin.d.ts +7 -8
- package/dist/lib/output/plugins/AssetsPlugin.js +62 -80
- package/dist/lib/output/plugins/IconsPlugin.d.ts +3 -2
- package/dist/lib/output/plugins/IconsPlugin.js +28 -84
- package/dist/lib/output/plugins/JavascriptIndexPlugin.d.ts +9 -2
- package/dist/lib/output/plugins/JavascriptIndexPlugin.js +90 -96
- package/dist/lib/output/plugins/NavigationPlugin.d.ts +3 -2
- package/dist/lib/output/plugins/NavigationPlugin.js +22 -102
- package/dist/lib/output/plugins/SitemapPlugin.d.ts +3 -2
- package/dist/lib/output/plugins/SitemapPlugin.js +60 -120
- package/dist/lib/output/plugins/index.d.ts +6 -6
- package/dist/lib/output/plugins/index.js +6 -15
- package/dist/lib/output/renderer.d.ts +14 -13
- package/dist/lib/output/renderer.js +129 -185
- package/dist/lib/output/theme.d.ts +9 -5
- package/dist/lib/output/theme.js +14 -62
- package/dist/lib/output/themes/MarkedPlugin.d.ts +8 -9
- package/dist/lib/output/themes/MarkedPlugin.js +152 -117
- package/dist/lib/output/themes/default/DefaultTheme.d.ts +17 -29
- package/dist/lib/output/themes/default/DefaultTheme.js +334 -310
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.d.ts +63 -48
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +119 -95
- package/dist/lib/output/themes/default/Slugger.d.ts +13 -0
- package/dist/lib/output/themes/default/Slugger.js +46 -0
- package/dist/lib/output/themes/default/layouts/default.d.ts +5 -5
- package/dist/lib/output/themes/default/layouts/default.js +47 -36
- package/dist/lib/output/themes/default/partials/anchor-icon.d.ts +2 -2
- package/dist/lib/output/themes/default/partials/anchor-icon.js +4 -7
- package/dist/lib/output/themes/default/partials/breadcrumb.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/breadcrumb.js +4 -8
- package/dist/lib/output/themes/default/partials/comment.d.ts +6 -4
- package/dist/lib/output/themes/default/partials/comment.js +52 -29
- package/dist/lib/output/themes/default/partials/footer.d.ts +2 -2
- package/dist/lib/output/themes/default/partials/footer.js +11 -14
- package/dist/lib/output/themes/default/partials/header.d.ts +4 -4
- package/dist/lib/output/themes/default/partials/header.js +9 -13
- package/dist/lib/output/themes/default/partials/hierarchy.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/hierarchy.js +9 -12
- package/dist/lib/output/themes/default/partials/icon.d.ts +4 -4
- package/dist/lib/output/themes/default/partials/icon.js +78 -73
- package/dist/lib/output/themes/default/partials/index.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/index.js +19 -22
- package/dist/lib/output/themes/default/partials/member.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.declaration.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.declaration.js +18 -61
- package/dist/lib/output/themes/default/partials/member.getterSetter.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.getterSetter.js +10 -26
- package/dist/lib/output/themes/default/partials/member.js +19 -24
- package/dist/lib/output/themes/default/partials/member.signature.body.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.signature.body.js +17 -21
- package/dist/lib/output/themes/default/partials/member.signature.title.d.ts +4 -7
- package/dist/lib/output/themes/default/partials/member.signature.title.js +8 -35
- package/dist/lib/output/themes/default/partials/member.signatures.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.signatures.js +9 -13
- package/dist/lib/output/themes/default/partials/member.sources.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/member.sources.js +13 -17
- package/dist/lib/output/themes/default/partials/members.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/members.js +10 -42
- package/dist/lib/output/themes/default/partials/moduleReflection.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/moduleReflection.js +62 -0
- package/dist/lib/output/themes/default/partials/navigation.d.ts +4 -4
- package/dist/lib/output/themes/default/partials/navigation.js +51 -62
- package/dist/lib/output/themes/default/partials/reflectionPreview.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/reflectionPreview.js +12 -15
- package/dist/lib/output/themes/default/partials/toolbar.d.ts +4 -4
- package/dist/lib/output/themes/default/partials/toolbar.js +16 -20
- package/dist/lib/output/themes/default/partials/type.d.ts +4 -6
- package/dist/lib/output/themes/default/partials/type.js +8 -388
- package/dist/lib/output/themes/default/partials/typeAndParent.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/typeAndParent.js +11 -15
- package/dist/lib/output/themes/default/partials/typeDetails.d.ts +8 -0
- package/dist/lib/output/themes/default/partials/typeDetails.js +221 -0
- package/dist/lib/output/themes/default/partials/typeParameters.d.ts +3 -3
- package/dist/lib/output/themes/default/partials/typeParameters.js +14 -17
- package/dist/lib/output/themes/default/templates/document.d.ts +4 -4
- package/dist/lib/output/themes/default/templates/document.js +3 -7
- package/dist/lib/output/themes/default/templates/hierarchy.d.ts +4 -4
- package/dist/lib/output/themes/default/templates/hierarchy.js +10 -13
- package/dist/lib/output/themes/default/templates/index.d.ts +4 -4
- package/dist/lib/output/themes/default/templates/index.js +3 -7
- package/dist/lib/output/themes/default/templates/reflection.d.ts +4 -4
- package/dist/lib/output/themes/default/templates/reflection.js +31 -34
- package/dist/lib/output/themes/lib.d.ts +17 -3
- package/dist/lib/output/themes/lib.js +110 -49
- package/dist/lib/serialization/components.d.ts +2 -5
- package/dist/lib/serialization/components.js +1 -2
- package/dist/lib/serialization/deserializer.d.ts +21 -7
- package/dist/lib/serialization/deserializer.js +138 -123
- package/dist/lib/serialization/events.d.ts +2 -2
- package/dist/lib/serialization/events.js +6 -5
- package/dist/lib/serialization/index.d.ts +5 -5
- package/dist/lib/serialization/index.js +4 -33
- package/dist/lib/serialization/schema.d.ts +8 -2
- package/dist/lib/serialization/schema.js +2 -2
- package/dist/lib/serialization/serializer.d.ts +11 -5
- package/dist/lib/serialization/serializer.js +32 -25
- package/dist/lib/utils/array.d.ts +3 -0
- package/dist/lib/utils/array.js +26 -27
- package/dist/lib/utils/component.d.ts +2 -44
- package/dist/lib/utils/component.js +10 -102
- package/dist/lib/utils/entry-point.d.ts +3 -4
- package/dist/lib/utils/entry-point.js +114 -85
- package/dist/lib/utils/enum.js +6 -14
- package/dist/lib/utils/events.js +6 -12
- package/dist/lib/utils/fs.js +50 -91
- package/dist/lib/utils/general.d.ts +2 -1
- package/dist/lib/utils/general.js +50 -40
- package/dist/lib/utils/highlighter.js +30 -57
- package/dist/lib/utils/hooks.js +7 -13
- package/dist/lib/utils/html-entities.d.ts +8926 -0
- package/dist/lib/utils/html-entities.js +2329 -0
- package/dist/lib/utils/html.d.ts +8 -0
- package/dist/lib/utils/html.js +81 -34
- package/dist/lib/utils/index.d.ts +22 -22
- package/dist/lib/utils/index.js +20 -91
- package/dist/lib/utils/jsx.d.ts +12 -5
- package/dist/lib/utils/jsx.elements.js +1 -4
- package/dist/lib/utils/jsx.js +53 -20
- package/dist/lib/utils/loggers.d.ts +3 -3
- package/dist/lib/utils/loggers.js +36 -46
- package/dist/lib/utils/map.js +6 -13
- package/dist/lib/utils/minimalSourceFile.js +5 -7
- package/dist/lib/utils/options/declaration.d.ts +33 -7
- package/dist/lib/utils/options/declaration.js +20 -22
- package/dist/lib/utils/options/defaults.d.ts +3 -2
- package/dist/lib/utils/options/defaults.js +18 -38
- package/dist/lib/utils/options/help.d.ts +2 -2
- package/dist/lib/utils/options/help.js +7 -10
- package/dist/lib/utils/options/index.d.ts +6 -6
- package/dist/lib/utils/options/index.js +4 -18
- package/dist/lib/utils/options/options.d.ts +8 -5
- package/dist/lib/utils/options/options.js +47 -71
- package/dist/lib/utils/options/readers/arguments.d.ts +2 -2
- package/dist/lib/utils/options/readers/arguments.js +15 -17
- package/dist/lib/utils/options/readers/index.d.ts +4 -4
- package/dist/lib/utils/options/readers/index.js +4 -11
- package/dist/lib/utils/options/readers/package-json.d.ts +3 -3
- package/dist/lib/utils/options/readers/package-json.js +15 -21
- package/dist/lib/utils/options/readers/tsconfig.d.ts +2 -2
- package/dist/lib/utils/options/readers/tsconfig.js +54 -63
- package/dist/lib/utils/options/readers/typedoc.d.ts +3 -3
- package/dist/lib/utils/options/readers/typedoc.js +44 -76
- package/dist/lib/utils/options/sources/index.d.ts +1 -1
- package/dist/lib/utils/options/sources/index.js +1 -5
- package/dist/lib/utils/options/sources/typedoc.d.ts +1 -1
- package/dist/lib/utils/options/sources/typedoc.js +220 -196
- package/dist/lib/utils/options/tsdoc-defaults.d.ts +3 -3
- package/dist/lib/utils/options/tsdoc-defaults.js +16 -12
- package/dist/lib/utils/package-manifest.d.ts +1 -1
- package/dist/lib/utils/package-manifest.js +15 -19
- package/dist/lib/utils/paths.js +9 -15
- package/dist/lib/utils/perf.js +6 -11
- package/dist/lib/utils/plugins.d.ts +1 -1
- package/dist/lib/utils/plugins.js +7 -10
- package/dist/lib/utils/reflections.d.ts +1 -1
- package/dist/lib/utils/reflections.js +9 -12
- package/dist/lib/utils/set.js +2 -6
- package/dist/lib/utils/sort.d.ts +3 -3
- package/dist/lib/utils/sort.js +20 -24
- package/dist/lib/utils/tsconfig.d.ts +1 -1
- package/dist/lib/utils/tsconfig.js +13 -21
- package/dist/lib/utils/tsutils.d.ts +1 -1
- package/dist/lib/utils/tsutils.js +3 -30
- package/dist/lib/utils/validation.js +6 -12
- package/dist/lib/validation/documentation.d.ts +2 -2
- package/dist/lib/validation/documentation.js +26 -29
- package/dist/lib/validation/exports.d.ts +2 -2
- package/dist/lib/validation/exports.js +9 -11
- package/dist/lib/validation/links.d.ts +2 -2
- package/dist/lib/validation/links.js +4 -7
- package/dist/lib/validation/unusedMergeModuleWith.d.ts +3 -0
- package/dist/lib/validation/unusedMergeModuleWith.js +11 -0
- package/package.json +14 -11
- package/static/main.js +4 -4
- package/static/style.css +91 -2
- package/tsdoc.json +30 -0
- package/dist/lib/output/themes/default/partials/member.reference.d.ts +0 -4
- package/dist/lib/output/themes/default/partials/member.reference.js +0 -30
- package/dist/lib/output/themes/default/partials/parameter.d.ts +0 -4
- package/dist/lib/output/themes/default/partials/parameter.js +0 -79
- package/dist/lib/utils/html-entities.json +0 -2326
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
const
|
|
3
|
-
module.exports =
|
|
2
|
+
const localeUtils = require("../locale-utils.cjs");
|
|
3
|
+
module.exports = localeUtils.buildIncompleteTranslation({
|
|
4
4
|
loaded_multiple_times_0: "TypeDoc 已加载多次。这通常是由具有自己的 TypeDoc 安装的插件引起的。加载的路径为:\n{0}",
|
|
5
5
|
unsupported_ts_version_0: "您正在使用不受支持的 TypeScript 版本运行!如果 TypeDoc 崩溃,这就是原因。TypeDoc 支持 {0}",
|
|
6
6
|
no_compiler_options_set: "未设置编译器选项。这可能意味着 TypeDoc 没有找到你的 tsconfig.json。生成的文档可能为空",
|
|
@@ -8,9 +8,8 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
8
8
|
solution_not_supported_in_watch_mode: "提供的 tsconfig 文件看起来像解决方案样式的 tsconfig,在监视模式下不受支持",
|
|
9
9
|
strategy_not_supported_in_watch_mode: "对于监视模式,entryPointStrategy 必须设置为 resolve 或 expand",
|
|
10
10
|
found_0_errors_and_1_warnings: "发现 {0} 个错误和 {1} 个警告",
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
json_written_to_0: "JSON 已写入 {0}",
|
|
11
|
+
// output_0_could_not_be_generated
|
|
12
|
+
// output_0_generated_at_1
|
|
14
13
|
no_entry_points_for_packages: "没有为包模式提供入口点,无法生成文档",
|
|
15
14
|
failed_to_find_packages: "找不到任何软件包,请确保您至少提供了一个包含 package.json 的目录作为入口点",
|
|
16
15
|
nested_packages_unsupported_0: "位于 {0} 的项目已将 entryPointStrategy 设置为包,但不支持嵌套包",
|
|
@@ -60,7 +59,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
60
59
|
invalid_intentionally_not_exported_symbols_0: "以下符号被标记为有意不导出,但未在文档中引用,或已被导出:\n{0}",
|
|
61
60
|
not_all_search_category_boosts_used_0: "文档中并未使用 searchCategoryBoosts 中指定的所有类别。未使用的类别包括:\n{0}",
|
|
62
61
|
not_all_search_group_boosts_used_0: "文档中并未使用 searchGroupBoosts 中指定的所有组。未使用的组为:\n{0}",
|
|
63
|
-
comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "{0}
|
|
62
|
+
comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "{0} 的评论包含“{1}”的 @categoryDescription,但该类别中没有子项",
|
|
64
63
|
comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "{0} 的注释包含“{1}”的 @groupDescription,但该组中没有子项",
|
|
65
64
|
label_0_for_1_cannot_be_referenced: "无法使用声明引用来引用 {1} 的标签“{0}”。标签只能包含 A-Z、0-9 和 _,并且不能以数字开头",
|
|
66
65
|
modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "修饰符标签 {0} 与 {2} 注释中的 {1} 互斥",
|
|
@@ -83,7 +82,6 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
83
82
|
could_not_empty_output_directory_0: "无法清空输出目录 {0}",
|
|
84
83
|
could_not_create_output_directory_0: "无法创建输出目录 {0}",
|
|
85
84
|
theme_0_is_not_defined_available_are_1: "主题“{0}”未定义。可用主题为:{1}",
|
|
86
|
-
custom_theme_does_not_define_getSlugger: "自定义主题没有定义 getSlugger(reflection) 方法,但尝试渲染 markdown",
|
|
87
85
|
no_entry_points_provided: "没有提供入口点,这可能是配置错误",
|
|
88
86
|
unable_to_find_any_entry_points: "无法找到任何入口点。请参阅先前的警告",
|
|
89
87
|
watch_does_not_support_packages_mode: "监视模式不支持“包”样式的入口点",
|
|
@@ -157,6 +155,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
157
155
|
help_disableGit: "假设所有内容都可以通过 sourceLinkTemplate 进行链接,如果启用此功能,则必须设置 sourceLinkTemplate。{path} 将以 basePath 为根",
|
|
158
156
|
help_basePath: "指定显示文件路径时使用的基本路径",
|
|
159
157
|
help_excludeTags: "从文档注释中删除列出的块级/修饰符标签",
|
|
158
|
+
// help_notRenderedTags
|
|
160
159
|
help_readme: "应显示在索引页上的自述文件路径。传递“none”以禁用索引页并在全局页上启动文档",
|
|
161
160
|
help_cname: "设置 CNAME 文件文本,这对于 GitHub Pages 上的自定义域很有用",
|
|
162
161
|
help_sourceLinkExternal: "指定哪些源代码链接应被视为外部链接,并在新选项卡中打开",
|
|
@@ -167,7 +166,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
167
166
|
help_hideGenerator: "不要打印页面末尾的 TypeDoc 链接",
|
|
168
167
|
help_customFooterHtml: "TypeDoc 链接后的自定义页脚",
|
|
169
168
|
help_customFooterHtmlDisableWrapper: "如果设置,则禁用 customFooterHtml 的包装元素",
|
|
170
|
-
|
|
169
|
+
// help_hideTypesInSignatureTitle
|
|
171
170
|
help_cacheBust: "在静态资产链接中包含生成时间",
|
|
172
171
|
help_searchInComments: "如果设置,搜索索引还将包括注释。这将大大增加搜索索引的大小",
|
|
173
172
|
help_searchInDocuments: "如果设置,搜索索引还将包含文档。这将大大增加搜索索引的大小",
|
|
@@ -302,8 +301,6 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
302
301
|
theme_inherited_from: "继承自",
|
|
303
302
|
theme_overrides: "重写了",
|
|
304
303
|
theme_returns: "返回",
|
|
305
|
-
theme_re_exports: "重新导出",
|
|
306
|
-
theme_renames_and_re_exports: "重命名并重新导出",
|
|
307
304
|
theme_generated_using_typedoc: "使用 TypeDoc 生成",
|
|
308
305
|
theme_preparing_search_index: "正在准备搜索索引...",
|
|
309
306
|
theme_search_index_not_available: "搜索索引不可用",
|
|
@@ -1,2 +1,382 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: {
|
|
2
|
+
loaded_multiple_times_0: "TypeDoc 已加载多次。这通常是由具有自己的 TypeDoc 安装的插件引起的。加载的路径为:\n{0}";
|
|
3
|
+
unsupported_ts_version_0: "您正在使用不受支持的 TypeScript 版本运行!如果 TypeDoc 崩溃,这就是原因。TypeDoc 支持 {0}";
|
|
4
|
+
no_compiler_options_set: string;
|
|
5
|
+
loaded_plugin_0: "已加载插件 {0}";
|
|
6
|
+
solution_not_supported_in_watch_mode: string;
|
|
7
|
+
strategy_not_supported_in_watch_mode: string;
|
|
8
|
+
found_0_errors_and_1_warnings: "发现 {0} 个错误和 {1} 个警告";
|
|
9
|
+
no_entry_points_for_packages: string;
|
|
10
|
+
failed_to_find_packages: string;
|
|
11
|
+
nested_packages_unsupported_0: "位于 {0} 的项目已将 entryPointStrategy 设置为包,但不支持嵌套包";
|
|
12
|
+
previous_error_occurred_when_reading_options_for_0: "读取 {0} 处的包的选项时发生上一个错误";
|
|
13
|
+
converting_project_at_0: "正在转换 {0} 处的项目";
|
|
14
|
+
failed_to_convert_packages: string;
|
|
15
|
+
merging_converted_projects: string;
|
|
16
|
+
no_entry_points_to_merge: string;
|
|
17
|
+
entrypoint_did_not_match_files_0: "入口点 glob {0} 与任何文件均不匹配";
|
|
18
|
+
failed_to_parse_json_0: "无法将 {0} 处的文件解析为 json";
|
|
19
|
+
failed_to_read_0_when_processing_document_tag_in_1: "处理 {1} 中注释的 @document 标签时无法读取文件 {0}";
|
|
20
|
+
failed_to_read_0_when_processing_project_document: "添加项目文档时无法读取文件 {0}";
|
|
21
|
+
failed_to_read_0_when_processing_document_child_in_1: "处理 {1} 中的文档子项时无法读取文件 {0}";
|
|
22
|
+
frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "{0} 中的 Frontmatter 子项应为字符串数组或具有字符串值的对象";
|
|
23
|
+
converting_union_as_interface: string;
|
|
24
|
+
converting_0_as_class_requires_value_declaration: "将 {0} 转换为类需要表示非类型值的声明";
|
|
25
|
+
converting_0_as_class_without_construct_signatures: "{0} 正在转换为类,但没有任何构造签名";
|
|
26
|
+
comment_for_0_should_not_contain_block_or_modifier_tags: "{0} 的注释不应包含任何块级标签或修饰符标签";
|
|
27
|
+
symbol_0_has_multiple_declarations_with_comment: "{0} 有多个带注释的声明。将使用任意注释";
|
|
28
|
+
comments_for_0_are_declared_at_1: "{0} 的注释声明于:\n{1}";
|
|
29
|
+
multiple_type_parameters_on_template_tag_unsupported: string;
|
|
30
|
+
failed_to_find_jsdoc_tag_for_name_0: "解析注释后无法找到 {0} 的 JSDoc 标签,请提交错误报告";
|
|
31
|
+
relative_path_0_is_not_a_file_and_will_not_be_copied_to_output: "找不到相对路径 {0} 对应的文件,该文件不会被复制至输出目录";
|
|
32
|
+
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "内联 @inheritDoc 标签不应出现在块级标签内,因为它不会在 {0} 处的注释中被处理。";
|
|
33
|
+
at_most_one_remarks_tag_expected_in_comment_at_0: "注释中最多应有一个 @remarks 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
34
|
+
at_most_one_returns_tag_expected_in_comment_at_0: "注释中最多应有一个 @returns 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
35
|
+
at_most_one_inheritdoc_tag_expected_in_comment_at_0: "注释中最多应有一个 @inheritDoc 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
36
|
+
content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "摘要部分的内容将被 {0} 处注释中的 @inheritDoc 标签覆盖";
|
|
37
|
+
content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "@remarks 块中的内容将被 {0} 处注释中的 @inheritDoc 标签覆盖";
|
|
38
|
+
example_tag_literal_name: string;
|
|
39
|
+
inheritdoc_tag_properly_capitalized: string;
|
|
40
|
+
treating_unrecognized_tag_0_as_modifier: "将无法识别的标签 {0} 视为修饰标签";
|
|
41
|
+
unmatched_closing_brace: string;
|
|
42
|
+
unescaped_open_brace_without_inline_tag: string;
|
|
43
|
+
unknown_block_tag_0: "遇到未知的块级标签 {0}";
|
|
44
|
+
unknown_inline_tag_0: "遇到未知的内联标签 {0}";
|
|
45
|
+
open_brace_within_inline_tag: string;
|
|
46
|
+
inline_tag_not_closed: string;
|
|
47
|
+
failed_to_resolve_link_to_0_in_comment_for_1: "无法解析 {1} 注释中指向 “{0}” 的链接";
|
|
48
|
+
failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: "无法解析 {1} 的注释中指向 “{0}” 的链接。您可能想要 “{2}”";
|
|
49
|
+
failed_to_resolve_link_to_0_in_readme_for_1: "无法解析 {1} 的自述文件中指向 “{0}” 的链接";
|
|
50
|
+
failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: "无法解析 {1} 的自述文件中指向 “{0}” 的链接。您可能想要 “{2}”";
|
|
51
|
+
failed_to_resolve_link_to_0_in_document_1: "无法解析文档 {1} 中指向 “{0}” 的链接";
|
|
52
|
+
failed_to_resolve_link_to_0_in_document_1_may_have_meant_2: "无法解析文档 {1} 中指向 “{0}” 的链接。您可能想要 “{2}”";
|
|
53
|
+
type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{0} 在 {1} 中定义,被 {2} 引用,但未包含在文档中";
|
|
54
|
+
reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{0} ({1}),在 {2} 中定义,没有任何文档";
|
|
55
|
+
invalid_intentionally_not_exported_symbols_0: "以下符号被标记为有意不导出,但未在文档中引用,或已被导出:\n{0}";
|
|
56
|
+
not_all_search_category_boosts_used_0: "文档中并未使用 searchCategoryBoosts 中指定的所有类别。未使用的类别包括:\n{0}";
|
|
57
|
+
not_all_search_group_boosts_used_0: "文档中并未使用 searchGroupBoosts 中指定的所有组。未使用的组为:\n{0}";
|
|
58
|
+
comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "{0} 的评论包含“{1}”的 @categoryDescription,但该类别中没有子项";
|
|
59
|
+
comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "{0} 的注释包含“{1}”的 @groupDescription,但该组中没有子项";
|
|
60
|
+
label_0_for_1_cannot_be_referenced: "无法使用声明引用来引用 {1} 的标签“{0}”。标签只能包含 A-Z、0-9 和 _,并且不能以数字开头";
|
|
61
|
+
modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "修饰符标签 {0} 与 {2} 注释中的 {1} 互斥";
|
|
62
|
+
signature_0_has_unused_param_with_name_1: "签名 {0} 有一个名为“{1}”的 @param,但未被使用";
|
|
63
|
+
declaration_reference_in_inheritdoc_for_0_not_fully_parsed: "@inheritDoc 中对 {0} 的声明引用未完全解析,可能会解析不正确";
|
|
64
|
+
failed_to_find_0_to_inherit_comment_from_in_1: "在 {1} 的注释中找不到要继承的注释“{0}”";
|
|
65
|
+
reflection_0_tried_to_copy_comment_from_1_but_source_had_no_comment: "{0} 尝试使用 @inheritDoc 从 {1} 复制注释,但源没有相关注释";
|
|
66
|
+
inheritdoc_circular_inheritance_chain_0: "@inheritDoc 指定循环继承链:{0}";
|
|
67
|
+
provided_readme_at_0_could_not_be_read: "提供的 README 路径无法读取 {0}";
|
|
68
|
+
defaulting_project_name: string;
|
|
69
|
+
disable_git_set_but_not_source_link_template: string;
|
|
70
|
+
disable_git_set_and_git_revision_used: string;
|
|
71
|
+
git_remote_0_not_valid: "提供的 git 远程“{0}”无效。源链接将失效";
|
|
72
|
+
custom_css_file_0_does_not_exist: "{0} 处的自定义 CSS 文件不存在";
|
|
73
|
+
custom_js_file_0_does_not_exist: "{0} 处的自定义 JavaScript 文件不存在";
|
|
74
|
+
unsupported_highlight_language_0_not_highlighted_in_comment_for_1: "不支持的高亮语言 {0} 将不会在 {1} 的注释中高亮";
|
|
75
|
+
unloaded_language_0_not_highlighted_in_comment_for_1: "语言为 {0} 的代码块将不会在 {1} 的注释中高亮,因为它未包含在 highlightLanguages 选项中";
|
|
76
|
+
yaml_frontmatter_not_an_object: string;
|
|
77
|
+
could_not_write_0: "无法写入 {0}";
|
|
78
|
+
could_not_empty_output_directory_0: "无法清空输出目录 {0}";
|
|
79
|
+
could_not_create_output_directory_0: "无法创建输出目录 {0}";
|
|
80
|
+
theme_0_is_not_defined_available_are_1: "主题“{0}”未定义。可用主题为:{1}";
|
|
81
|
+
no_entry_points_provided: string;
|
|
82
|
+
unable_to_find_any_entry_points: string;
|
|
83
|
+
watch_does_not_support_packages_mode: string;
|
|
84
|
+
watch_does_not_support_merge_mode: string;
|
|
85
|
+
entry_point_0_not_in_program: "入口点 {0} 未被 tsconfig 中的“files”或“include”选项引用";
|
|
86
|
+
use_expand_or_glob_for_files_in_dir: string;
|
|
87
|
+
glob_0_did_not_match_any_files: "glob {0} 与任何文件均不匹配";
|
|
88
|
+
entry_point_0_did_not_match_any_files_after_exclude: "应用排除模式后,glob {0} 没有匹配任何文件";
|
|
89
|
+
entry_point_0_did_not_exist: "提供的入口点 {0} 不存在";
|
|
90
|
+
entry_point_0_did_not_match_any_packages: "入口点 glob {0} 与任何包含 package.json 的目录不匹配";
|
|
91
|
+
file_0_not_an_object: "文件 {0} 不是对象";
|
|
92
|
+
serialized_project_referenced_0_not_part_of_project: "序列化项目引用了反射 {0},但它不是项目的一部分";
|
|
93
|
+
saved_relative_path_0_resolved_from_1_is_not_a_file: "序列化项目引用的 {0} 不存在或无法在 {1} 下找到";
|
|
94
|
+
circular_reference_extends_0: "{0} 的“extends”字段出现循环引用";
|
|
95
|
+
failed_resolve_0_to_file_in_1: "无法将 {0} 解析为 {1} 中的文件";
|
|
96
|
+
option_0_can_only_be_specified_by_config_file: "“{0}”选项只能通过配置文件指定";
|
|
97
|
+
option_0_expected_a_value_but_none_provided: "--{0} 需要一个值,但没有给出任何参数";
|
|
98
|
+
unknown_option_0_may_have_meant_1: "未知选项:{0},你可能指的是:\n\t{1}";
|
|
99
|
+
typedoc_key_in_0_ignored: "{0} 中的“typedoc”键已被旧包 entryPointStrategy 使用,将被忽略";
|
|
100
|
+
typedoc_options_must_be_object_in_0: "无法解析 {0} 中的“typedocOptions”字段,请确保它存在且包含对象";
|
|
101
|
+
tsconfig_file_0_does_not_exist: "tsconfig 文件 {0} 不存在";
|
|
102
|
+
tsconfig_file_specifies_options_file: string;
|
|
103
|
+
tsconfig_file_specifies_tsconfig_file: string;
|
|
104
|
+
tags_0_defined_in_typedoc_json_overwritten_by_tsdoc_json: "typedoc.json 中定义的 {0} 将被 tsdoc.json 中的配置覆盖";
|
|
105
|
+
failed_read_tsdoc_json_0: "无法读取位于 {0} 的 tsdoc.json 文件";
|
|
106
|
+
invalid_tsdoc_json_0: "文件 {0} 不是有效的 tsdoc.json 文件";
|
|
107
|
+
options_file_0_does_not_exist: "选项文件 {0} 不存在";
|
|
108
|
+
failed_read_options_file_0: "无法解析 {0},请确保其存在并导出对象";
|
|
109
|
+
invalid_plugin_0_missing_load_function: "插件 {0} 中的结构无效,未找到加载函数";
|
|
110
|
+
plugin_0_could_not_be_loaded: "无法加载插件 {0}";
|
|
111
|
+
help_options: string;
|
|
112
|
+
help_tsconfig: string;
|
|
113
|
+
help_compilerOptions: string;
|
|
114
|
+
help_lang: string;
|
|
115
|
+
help_locales: string;
|
|
116
|
+
help_packageOptions: string;
|
|
117
|
+
help_entryPoints: string;
|
|
118
|
+
help_entryPointStrategy: string;
|
|
119
|
+
help_alwaysCreateEntryPointModule: string;
|
|
120
|
+
help_projectDocuments: string;
|
|
121
|
+
help_exclude: string;
|
|
122
|
+
help_externalPattern: string;
|
|
123
|
+
help_excludeExternals: string;
|
|
124
|
+
help_excludeNotDocumented: string;
|
|
125
|
+
help_excludeNotDocumentedKinds: string;
|
|
126
|
+
help_excludeInternal: string;
|
|
127
|
+
help_excludeCategories: string;
|
|
128
|
+
help_excludePrivate: string;
|
|
129
|
+
help_excludeProtected: string;
|
|
130
|
+
help_excludeReferences: string;
|
|
131
|
+
help_externalSymbolLinkMappings: string;
|
|
132
|
+
help_out: string;
|
|
133
|
+
help_json: string;
|
|
134
|
+
help_pretty: string;
|
|
135
|
+
help_emit: string;
|
|
136
|
+
help_theme: string;
|
|
137
|
+
help_lightHighlightTheme: string;
|
|
138
|
+
help_darkHighlightTheme: string;
|
|
139
|
+
help_highlightLanguages: string;
|
|
140
|
+
help_customCss: string;
|
|
141
|
+
help_customJs: string;
|
|
142
|
+
help_markdownItOptions: string;
|
|
143
|
+
help_markdownItLoader: string;
|
|
144
|
+
help_maxTypeConversionDepth: string;
|
|
145
|
+
help_name: string;
|
|
146
|
+
help_includeVersion: string;
|
|
147
|
+
help_disableSources: string;
|
|
148
|
+
help_sourceLinkTemplate: string;
|
|
149
|
+
help_gitRevision: string;
|
|
150
|
+
help_gitRemote: string;
|
|
151
|
+
help_disableGit: string;
|
|
152
|
+
help_basePath: string;
|
|
153
|
+
help_excludeTags: string;
|
|
154
|
+
help_readme: string;
|
|
155
|
+
help_cname: string;
|
|
156
|
+
help_sourceLinkExternal: string;
|
|
157
|
+
help_markdownLinkExternal: string;
|
|
158
|
+
help_githubPages: string;
|
|
159
|
+
help_hostedBaseUrl: string;
|
|
160
|
+
help_useHostedBaseUrlForAbsoluteLinks: string;
|
|
161
|
+
help_hideGenerator: string;
|
|
162
|
+
help_customFooterHtml: string;
|
|
163
|
+
help_customFooterHtmlDisableWrapper: string;
|
|
164
|
+
help_cacheBust: string;
|
|
165
|
+
help_searchInComments: string;
|
|
166
|
+
help_searchInDocuments: string;
|
|
167
|
+
help_cleanOutputDir: string;
|
|
168
|
+
help_titleLink: string;
|
|
169
|
+
help_navigationLinks: string;
|
|
170
|
+
help_sidebarLinks: string;
|
|
171
|
+
help_navigationLeaves: string;
|
|
172
|
+
help_navigation: string;
|
|
173
|
+
help_headings: string;
|
|
174
|
+
help_visibilityFilters: string;
|
|
175
|
+
help_searchCategoryBoosts: string;
|
|
176
|
+
help_searchGroupBoosts: string;
|
|
177
|
+
help_jsDocCompatibility: string;
|
|
178
|
+
help_commentStyle: string;
|
|
179
|
+
help_useTsLinkResolution: string;
|
|
180
|
+
help_preserveLinkText: string;
|
|
181
|
+
help_blockTags: string;
|
|
182
|
+
help_inlineTags: string;
|
|
183
|
+
help_modifierTags: string;
|
|
184
|
+
help_categorizeByGroup: string;
|
|
185
|
+
help_defaultCategory: string;
|
|
186
|
+
help_categoryOrder: string;
|
|
187
|
+
help_groupOrder: string;
|
|
188
|
+
help_sort: string;
|
|
189
|
+
help_sortEntryPoints: string;
|
|
190
|
+
help_kindSortOrder: string;
|
|
191
|
+
help_watch: string;
|
|
192
|
+
help_preserveWatchOutput: string;
|
|
193
|
+
help_skipErrorChecking: string;
|
|
194
|
+
help_help: string;
|
|
195
|
+
help_version: string;
|
|
196
|
+
help_showConfig: string;
|
|
197
|
+
help_plugin: string;
|
|
198
|
+
help_logLevel: string;
|
|
199
|
+
help_treatWarningsAsErrors: string;
|
|
200
|
+
help_treatValidationWarningsAsErrors: string;
|
|
201
|
+
help_intentionallyNotExported: string;
|
|
202
|
+
help_requiredToBeDocumented: string;
|
|
203
|
+
help_validation: string;
|
|
204
|
+
unknown_option_0_you_may_have_meant_1: "未知选项“{0}” 你可能指的是:\n{1}";
|
|
205
|
+
option_0_must_be_between_1_and_2: "{0} 必须介于 {1} 和 {2} 之间";
|
|
206
|
+
option_0_must_be_equal_to_or_greater_than_1: "{0} 必须等于或大于 {1}";
|
|
207
|
+
option_0_must_be_less_than_or_equal_to_1: "{0} 必须小于或等于 {1}";
|
|
208
|
+
option_0_must_be_one_of_1: "{0} 必须是 {1} 之一";
|
|
209
|
+
flag_0_is_not_valid_for_1_expected_2: "标志“{0}”对 {1} 无效,应为 {2} 之一";
|
|
210
|
+
expected_object_with_flag_values_for_0: "预期为一个带有标志值为 {0} 或 true/false 的对象";
|
|
211
|
+
flag_values_for_0_must_be_booleans: "{0} 的标志值必须是布尔值";
|
|
212
|
+
locales_must_be_an_object: string;
|
|
213
|
+
exclude_not_documented_specified_0_valid_values_are_1: "excludeNotDocumentedKinds 只能指定已知值,并且提供了无效值 ({0})。有效类型为:\n{1}";
|
|
214
|
+
external_symbol_link_mappings_must_be_object: string;
|
|
215
|
+
highlight_theme_0_must_be_one_of_1: "{0} 必须是下列之一:{1}";
|
|
216
|
+
highlightLanguages_contains_invalid_languages_0: "highlightLanguages 包含无效语言:{0},运行 typedoc --help 获取受支持语言的列表";
|
|
217
|
+
hostedBaseUrl_must_start_with_http: string;
|
|
218
|
+
useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: string;
|
|
219
|
+
option_0_must_be_an_object: "“{0}”选项必须是非数组对象";
|
|
220
|
+
option_0_must_be_a_function: "‘{0}’ 选项必须是一个函数";
|
|
221
|
+
option_0_must_be_object_with_urls: "{0} 必须是具有字符串标签作为键和 URL 值的对象";
|
|
222
|
+
visibility_filters_only_include_0: "visibilityFilters 只能包含以下非@键:{0}";
|
|
223
|
+
visibility_filters_must_be_booleans: string;
|
|
224
|
+
option_0_values_must_be_numbers: "{0} 的所有值都必须是数字";
|
|
225
|
+
option_0_values_must_be_array_of_tags: "{0} 必须是有效标签名称的数组";
|
|
226
|
+
option_0_specified_1_but_only_2_is_valid: "{0} 只能指定已知值,并且提供了无效值 ({1})。有效的排序策略为:\n{2}";
|
|
227
|
+
kind_project: string;
|
|
228
|
+
kind_module: string;
|
|
229
|
+
kind_namespace: string;
|
|
230
|
+
kind_enum: string;
|
|
231
|
+
kind_enum_member: string;
|
|
232
|
+
kind_variable: string;
|
|
233
|
+
kind_function: string;
|
|
234
|
+
kind_class: string;
|
|
235
|
+
kind_interface: string;
|
|
236
|
+
kind_constructor: string;
|
|
237
|
+
kind_property: string;
|
|
238
|
+
kind_method: string;
|
|
239
|
+
kind_call_signature: string;
|
|
240
|
+
kind_index_signature: string;
|
|
241
|
+
kind_constructor_signature: string;
|
|
242
|
+
kind_parameter: string;
|
|
243
|
+
kind_type_literal: string;
|
|
244
|
+
kind_type_parameter: string;
|
|
245
|
+
kind_accessor: string;
|
|
246
|
+
kind_get_signature: string;
|
|
247
|
+
kind_set_signature: string;
|
|
248
|
+
kind_type_alias: string;
|
|
249
|
+
kind_reference: string;
|
|
250
|
+
kind_document: string;
|
|
251
|
+
kind_plural_project: string;
|
|
252
|
+
kind_plural_module: string;
|
|
253
|
+
kind_plural_namespace: string;
|
|
254
|
+
kind_plural_enum: string;
|
|
255
|
+
kind_plural_enum_member: string;
|
|
256
|
+
kind_plural_variable: string;
|
|
257
|
+
kind_plural_function: string;
|
|
258
|
+
kind_plural_class: string;
|
|
259
|
+
kind_plural_interface: string;
|
|
260
|
+
kind_plural_constructor: string;
|
|
261
|
+
kind_plural_property: string;
|
|
262
|
+
kind_plural_method: string;
|
|
263
|
+
kind_plural_call_signature: string;
|
|
264
|
+
kind_plural_index_signature: string;
|
|
265
|
+
kind_plural_constructor_signature: string;
|
|
266
|
+
kind_plural_parameter: string;
|
|
267
|
+
kind_plural_type_literal: string;
|
|
268
|
+
kind_plural_type_parameter: string;
|
|
269
|
+
kind_plural_accessor: string;
|
|
270
|
+
kind_plural_get_signature: string;
|
|
271
|
+
kind_plural_set_signature: string;
|
|
272
|
+
kind_plural_type_alias: string;
|
|
273
|
+
kind_plural_reference: string;
|
|
274
|
+
kind_plural_document: string;
|
|
275
|
+
flag_protected: string;
|
|
276
|
+
flag_private: string;
|
|
277
|
+
flag_external: string;
|
|
278
|
+
flag_inherited: string;
|
|
279
|
+
flag_public: string;
|
|
280
|
+
flag_static: string;
|
|
281
|
+
flag_optional: string;
|
|
282
|
+
flag_rest: string;
|
|
283
|
+
flag_abstract: string;
|
|
284
|
+
flag_const: string;
|
|
285
|
+
flag_readonly: string;
|
|
286
|
+
theme_implements: string;
|
|
287
|
+
theme_indexable: string;
|
|
288
|
+
theme_type_declaration: string;
|
|
289
|
+
theme_index: string;
|
|
290
|
+
theme_hierarchy: string;
|
|
291
|
+
theme_hierarchy_view_full: string;
|
|
292
|
+
theme_implemented_by: string;
|
|
293
|
+
theme_defined_in: string;
|
|
294
|
+
theme_implementation_of: string;
|
|
295
|
+
theme_inherited_from: string;
|
|
296
|
+
theme_overrides: string;
|
|
297
|
+
theme_returns: string;
|
|
298
|
+
theme_generated_using_typedoc: string;
|
|
299
|
+
theme_preparing_search_index: string;
|
|
300
|
+
theme_search_index_not_available: string;
|
|
301
|
+
theme_settings: string;
|
|
302
|
+
theme_member_visibility: string;
|
|
303
|
+
theme_theme: string;
|
|
304
|
+
theme_os: string;
|
|
305
|
+
theme_light: string;
|
|
306
|
+
theme_dark: string;
|
|
307
|
+
theme_on_this_page: string;
|
|
308
|
+
theme_search: string;
|
|
309
|
+
theme_menu: string;
|
|
310
|
+
theme_permalink: string;
|
|
311
|
+
theme_copy: string;
|
|
312
|
+
theme_copied: string;
|
|
313
|
+
theme_normally_hidden: string;
|
|
314
|
+
theme_class_hierarchy_title: string;
|
|
315
|
+
theme_loading: string;
|
|
316
|
+
tag_defaultValue: string;
|
|
317
|
+
tag_deprecated: string;
|
|
318
|
+
tag_example: string;
|
|
319
|
+
tag_param: string;
|
|
320
|
+
tag_privateRemarks: string;
|
|
321
|
+
tag_remarks: string;
|
|
322
|
+
tag_returns: string;
|
|
323
|
+
tag_see: string;
|
|
324
|
+
tag_throws: string;
|
|
325
|
+
tag_typeParam: string;
|
|
326
|
+
tag_author: string;
|
|
327
|
+
tag_callback: string;
|
|
328
|
+
tag_category: string;
|
|
329
|
+
tag_categoryDescription: string;
|
|
330
|
+
tag_default: string;
|
|
331
|
+
tag_document: string;
|
|
332
|
+
tag_extends: string;
|
|
333
|
+
tag_augments: string;
|
|
334
|
+
tag_yields: string;
|
|
335
|
+
tag_group: string;
|
|
336
|
+
tag_groupDescription: string;
|
|
337
|
+
tag_import: string;
|
|
338
|
+
tag_inheritDoc: string;
|
|
339
|
+
tag_jsx: string;
|
|
340
|
+
tag_license: string;
|
|
341
|
+
tag_module: string;
|
|
342
|
+
tag_prop: string;
|
|
343
|
+
tag_property: string;
|
|
344
|
+
tag_return: string;
|
|
345
|
+
tag_satisfies: string;
|
|
346
|
+
tag_since: string;
|
|
347
|
+
tag_template: string;
|
|
348
|
+
tag_type: string;
|
|
349
|
+
tag_typedef: string;
|
|
350
|
+
tag_link: string;
|
|
351
|
+
tag_label: string;
|
|
352
|
+
tag_linkcode: string;
|
|
353
|
+
tag_linkplain: string;
|
|
354
|
+
tag_alpha: string;
|
|
355
|
+
tag_beta: string;
|
|
356
|
+
tag_eventProperty: string;
|
|
357
|
+
tag_experimental: string;
|
|
358
|
+
tag_internal: string;
|
|
359
|
+
tag_override: string;
|
|
360
|
+
tag_packageDocumentation: string;
|
|
361
|
+
tag_public: string;
|
|
362
|
+
tag_readonly: string;
|
|
363
|
+
tag_sealed: string;
|
|
364
|
+
tag_virtual: string;
|
|
365
|
+
tag_abstract: string;
|
|
366
|
+
tag_class: string;
|
|
367
|
+
tag_enum: string;
|
|
368
|
+
tag_event: string;
|
|
369
|
+
tag_hidden: string;
|
|
370
|
+
tag_hideCategories: string;
|
|
371
|
+
tag_hideconstructor: string;
|
|
372
|
+
tag_hideGroups: string;
|
|
373
|
+
tag_ignore: string;
|
|
374
|
+
tag_interface: string;
|
|
375
|
+
tag_namespace: string;
|
|
376
|
+
tag_overload: string;
|
|
377
|
+
tag_private: string;
|
|
378
|
+
tag_protected: string;
|
|
379
|
+
tag_showCategories: string;
|
|
380
|
+
tag_showGroups: string;
|
|
381
|
+
};
|
|
2
382
|
export = _default;
|