@depup/typedoc 0.28.17-depup.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/LICENSE +201 -0
- package/README.md +34 -0
- package/bin/package.json +3 -0
- package/bin/typedoc +24 -0
- package/changes.json +22 -0
- package/dist/browser-locales/de.d.ts +2 -0
- package/dist/browser-locales/de.js +62 -0
- package/dist/browser-locales/en.d.ts +2 -0
- package/dist/browser-locales/en.js +62 -0
- package/dist/browser-locales/ja.d.ts +2 -0
- package/dist/browser-locales/ja.js +62 -0
- package/dist/browser-locales/ko.d.ts +2 -0
- package/dist/browser-locales/ko.js +62 -0
- package/dist/browser-locales/zh.d.ts +2 -0
- package/dist/browser-locales/zh.js +62 -0
- package/dist/browser-utils.d.ts +3 -0
- package/dist/browser-utils.js +3 -0
- package/dist/index.d.ts +49 -0
- package/dist/index.js +46 -0
- package/dist/lib/application-events.d.ts +5 -0
- package/dist/lib/application-events.js +5 -0
- package/dist/lib/application.d.ts +195 -0
- package/dist/lib/application.js +715 -0
- package/dist/lib/cli.d.ts +1 -0
- package/dist/lib/cli.js +111 -0
- package/dist/lib/converter/comments/blockLexer.d.ts +4 -0
- package/dist/lib/converter/comments/blockLexer.js +391 -0
- package/dist/lib/converter/comments/declarationReferenceResolver.d.ts +3 -0
- package/dist/lib/converter/comments/declarationReferenceResolver.js +218 -0
- package/dist/lib/converter/comments/discovery.d.ts +14 -0
- package/dist/lib/converter/comments/discovery.js +563 -0
- package/dist/lib/converter/comments/index.d.ts +37 -0
- package/dist/lib/converter/comments/index.js +241 -0
- package/dist/lib/converter/comments/lexer.d.ts +17 -0
- package/dist/lib/converter/comments/lexer.js +10 -0
- package/dist/lib/converter/comments/lineLexer.d.ts +3 -0
- package/dist/lib/converter/comments/lineLexer.js +279 -0
- package/dist/lib/converter/comments/linkResolver.d.ts +20 -0
- package/dist/lib/converter/comments/linkResolver.js +186 -0
- package/dist/lib/converter/comments/parser.d.ts +18 -0
- package/dist/lib/converter/comments/parser.js +538 -0
- package/dist/lib/converter/comments/rawLexer.d.ts +8 -0
- package/dist/lib/converter/comments/rawLexer.js +218 -0
- package/dist/lib/converter/comments/tagName.d.ts +8 -0
- package/dist/lib/converter/comments/tagName.js +58 -0
- package/dist/lib/converter/comments/textParser.d.ts +33 -0
- package/dist/lib/converter/comments/textParser.js +372 -0
- package/dist/lib/converter/components.d.ts +4 -0
- package/dist/lib/converter/components.js +3 -0
- package/dist/lib/converter/context.d.ts +101 -0
- package/dist/lib/converter/context.js +311 -0
- package/dist/lib/converter/convert-expression.d.ts +9 -0
- package/dist/lib/converter/convert-expression.js +58 -0
- package/dist/lib/converter/converter-events.d.ts +13 -0
- package/dist/lib/converter/converter-events.js +13 -0
- package/dist/lib/converter/converter.d.ts +238 -0
- package/dist/lib/converter/converter.js +705 -0
- package/dist/lib/converter/factories/index-signature.d.ts +3 -0
- package/dist/lib/converter/factories/index-signature.js +50 -0
- package/dist/lib/converter/factories/signature.d.ts +14 -0
- package/dist/lib/converter/factories/signature.js +353 -0
- package/dist/lib/converter/factories/symbol-id.d.ts +3 -0
- package/dist/lib/converter/factories/symbol-id.js +47 -0
- package/dist/lib/converter/index.d.ts +5 -0
- package/dist/lib/converter/index.js +3 -0
- package/dist/lib/converter/jsdoc.d.ts +4 -0
- package/dist/lib/converter/jsdoc.js +135 -0
- package/dist/lib/converter/plugins/CategoryPlugin.d.ts +48 -0
- package/dist/lib/converter/plugins/CategoryPlugin.js +278 -0
- package/dist/lib/converter/plugins/CommentPlugin.d.ts +128 -0
- package/dist/lib/converter/plugins/CommentPlugin.js +770 -0
- package/dist/lib/converter/plugins/GroupPlugin.d.ts +48 -0
- package/dist/lib/converter/plugins/GroupPlugin.js +281 -0
- package/dist/lib/converter/plugins/ImplementsPlugin.d.ts +42 -0
- package/dist/lib/converter/plugins/ImplementsPlugin.js +438 -0
- package/dist/lib/converter/plugins/IncludePlugin.d.ts +14 -0
- package/dist/lib/converter/plugins/IncludePlugin.js +254 -0
- package/dist/lib/converter/plugins/InheritDocPlugin.d.ts +32 -0
- package/dist/lib/converter/plugins/InheritDocPlugin.js +220 -0
- package/dist/lib/converter/plugins/LinkResolverPlugin.d.ts +13 -0
- package/dist/lib/converter/plugins/LinkResolverPlugin.js +88 -0
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.d.ts +12 -0
- package/dist/lib/converter/plugins/MergeModuleWithPlugin.js +50 -0
- package/dist/lib/converter/plugins/PackagePlugin.d.ts +31 -0
- package/dist/lib/converter/plugins/PackagePlugin.js +188 -0
- package/dist/lib/converter/plugins/SourcePlugin.d.ts +36 -0
- package/dist/lib/converter/plugins/SourcePlugin.js +215 -0
- package/dist/lib/converter/plugins/TypePlugin.d.ts +16 -0
- package/dist/lib/converter/plugins/TypePlugin.js +108 -0
- package/dist/lib/converter/plugins/index.d.ts +10 -0
- package/dist/lib/converter/plugins/index.js +10 -0
- package/dist/lib/converter/symbols.d.ts +3 -0
- package/dist/lib/converter/symbols.js +861 -0
- package/dist/lib/converter/types.d.ts +10 -0
- package/dist/lib/converter/types.js +833 -0
- package/dist/lib/converter/utils/nodes.d.ts +7 -0
- package/dist/lib/converter/utils/nodes.js +26 -0
- package/dist/lib/converter/utils/reflections.d.ts +2 -0
- package/dist/lib/converter/utils/reflections.js +17 -0
- package/dist/lib/converter/utils/repository.d.ts +96 -0
- package/dist/lib/converter/utils/repository.js +295 -0
- package/dist/lib/converter/utils/symbols.d.ts +2 -0
- package/dist/lib/converter/utils/symbols.js +12 -0
- package/dist/lib/debug/index.d.ts +2 -0
- package/dist/lib/debug/index.js +2 -0
- package/dist/lib/debug/reflectionLifetimes.d.ts +3 -0
- package/dist/lib/debug/reflectionLifetimes.js +27 -0
- package/dist/lib/debug/rendererUrls.d.ts +6 -0
- package/dist/lib/debug/rendererUrls.js +68 -0
- package/dist/lib/internationalization/index.d.ts +7 -0
- package/dist/lib/internationalization/index.js +7 -0
- package/dist/lib/internationalization/internationalization.d.ts +65 -0
- package/dist/lib/internationalization/internationalization.js +64 -0
- package/dist/lib/internationalization/locale-utils.cjs +8 -0
- package/dist/lib/internationalization/locale-utils.d.cts +8 -0
- package/dist/lib/internationalization/locales/de.cjs +401 -0
- package/dist/lib/internationalization/locales/de.d.cts +368 -0
- package/dist/lib/internationalization/locales/en.cjs +411 -0
- package/dist/lib/internationalization/locales/en.d.cts +380 -0
- package/dist/lib/internationalization/locales/ja.cjs +320 -0
- package/dist/lib/internationalization/locales/ja.d.cts +307 -0
- package/dist/lib/internationalization/locales/ko.cjs +233 -0
- package/dist/lib/internationalization/locales/ko.d.cts +221 -0
- package/dist/lib/internationalization/locales/zh.cjs +488 -0
- package/dist/lib/internationalization/locales/zh.d.cts +452 -0
- package/dist/lib/internationalization/translatable.d.ts +21 -0
- package/dist/lib/internationalization/translatable.js +8 -0
- package/dist/lib/models/Comment.d.ts +241 -0
- package/dist/lib/models/Comment.js +534 -0
- package/dist/lib/models/ContainerReflection.d.ts +56 -0
- package/dist/lib/models/ContainerReflection.js +159 -0
- package/dist/lib/models/DeclarationReflection.d.ts +149 -0
- package/dist/lib/models/DeclarationReflection.js +287 -0
- package/dist/lib/models/DocumentReflection.d.ts +32 -0
- package/dist/lib/models/DocumentReflection.js +66 -0
- package/dist/lib/models/FileRegistry.d.ts +46 -0
- package/dist/lib/models/FileRegistry.js +133 -0
- package/dist/lib/models/ParameterReflection.d.ts +21 -0
- package/dist/lib/models/ParameterReflection.js +39 -0
- package/dist/lib/models/ProjectReflection.d.ts +112 -0
- package/dist/lib/models/ProjectReflection.js +417 -0
- package/dist/lib/models/ReferenceReflection.d.ts +49 -0
- package/dist/lib/models/ReferenceReflection.js +85 -0
- package/dist/lib/models/Reflection.d.ts +229 -0
- package/dist/lib/models/Reflection.js +495 -0
- package/dist/lib/models/ReflectionCategory.d.ts +31 -0
- package/dist/lib/models/ReflectionCategory.js +56 -0
- package/dist/lib/models/ReflectionGroup.d.ts +38 -0
- package/dist/lib/models/ReflectionGroup.js +72 -0
- package/dist/lib/models/ReflectionSymbolId.d.ts +63 -0
- package/dist/lib/models/ReflectionSymbolId.js +85 -0
- package/dist/lib/models/SignatureReflection.d.ts +50 -0
- package/dist/lib/models/SignatureReflection.js +96 -0
- package/dist/lib/models/SourceReference.d.ts +33 -0
- package/dist/lib/models/SourceReference.js +50 -0
- package/dist/lib/models/TypeParameterReflection.d.ts +30 -0
- package/dist/lib/models/TypeParameterReflection.js +45 -0
- package/dist/lib/models/index.d.ts +19 -0
- package/dist/lib/models/index.js +19 -0
- package/dist/lib/models/kind.d.ts +84 -0
- package/dist/lib/models/kind.js +231 -0
- package/dist/lib/models/types.d.ts +553 -0
- package/dist/lib/models/types.js +1296 -0
- package/dist/lib/models/utils.d.ts +1 -0
- package/dist/lib/models/utils.js +26 -0
- package/dist/lib/models/variant.d.ts +21 -0
- package/dist/lib/models/variant.js +1 -0
- package/dist/lib/output/components.d.ts +53 -0
- package/dist/lib/output/components.js +133 -0
- package/dist/lib/output/events.d.ts +175 -0
- package/dist/lib/output/events.js +195 -0
- package/dist/lib/output/formatter.d.ts +88 -0
- package/dist/lib/output/formatter.js +660 -0
- package/dist/lib/output/index.d.ts +9 -0
- package/dist/lib/output/index.js +7 -0
- package/dist/lib/output/output.d.ts +14 -0
- package/dist/lib/output/output.js +92 -0
- package/dist/lib/output/plugins/AssetsPlugin.d.ts +20 -0
- package/dist/lib/output/plugins/AssetsPlugin.js +160 -0
- package/dist/lib/output/plugins/HierarchyPlugin.d.ts +7 -0
- package/dist/lib/output/plugins/HierarchyPlugin.js +65 -0
- package/dist/lib/output/plugins/IconsPlugin.d.ts +12 -0
- package/dist/lib/output/plugins/IconsPlugin.js +54 -0
- package/dist/lib/output/plugins/JavascriptIndexPlugin.d.ts +22 -0
- package/dist/lib/output/plugins/JavascriptIndexPlugin.js +222 -0
- package/dist/lib/output/plugins/NavigationPlugin.d.ts +7 -0
- package/dist/lib/output/plugins/NavigationPlugin.js +23 -0
- package/dist/lib/output/plugins/SitemapPlugin.d.ts +8 -0
- package/dist/lib/output/plugins/SitemapPlugin.js +82 -0
- package/dist/lib/output/plugins/index.d.ts +7 -0
- package/dist/lib/output/plugins/index.js +7 -0
- package/dist/lib/output/renderer.d.ts +227 -0
- package/dist/lib/output/renderer.js +387 -0
- package/dist/lib/output/router.d.ts +187 -0
- package/dist/lib/output/router.js +520 -0
- package/dist/lib/output/theme.d.ts +22 -0
- package/dist/lib/output/theme.js +17 -0
- package/dist/lib/output/themes/MarkedPlugin.d.ts +62 -0
- package/dist/lib/output/themes/MarkedPlugin.js +461 -0
- package/dist/lib/output/themes/default/DefaultTheme.d.ts +72 -0
- package/dist/lib/output/themes/default/DefaultTheme.js +367 -0
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.d.ts +105 -0
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +151 -0
- package/dist/lib/output/themes/default/Slugger.d.ts +13 -0
- package/dist/lib/output/themes/default/Slugger.js +60 -0
- package/dist/lib/output/themes/default/layouts/default.d.ts +6 -0
- package/dist/lib/output/themes/default/layouts/default.js +89 -0
- package/dist/lib/output/themes/default/partials/anchor-icon.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/anchor-icon.js +9 -0
- package/dist/lib/output/themes/default/partials/breadcrumb.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/breadcrumb.js +11 -0
- package/dist/lib/output/themes/default/partials/comment.d.ts +8 -0
- package/dist/lib/output/themes/default/partials/comment.js +80 -0
- package/dist/lib/output/themes/default/partials/footer.d.ts +3 -0
- package/dist/lib/output/themes/default/partials/footer.js +37 -0
- package/dist/lib/output/themes/default/partials/header.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/header.js +39 -0
- package/dist/lib/output/themes/default/partials/hierarchy.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/hierarchy.js +32 -0
- package/dist/lib/output/themes/default/partials/icon.d.ts +20 -0
- package/dist/lib/output/themes/default/partials/icon.js +101 -0
- package/dist/lib/output/themes/default/partials/index.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/index.js +24 -0
- package/dist/lib/output/themes/default/partials/member.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.declaration.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.declaration.js +35 -0
- package/dist/lib/output/themes/default/partials/member.getterSetter.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.getterSetter.js +12 -0
- package/dist/lib/output/themes/default/partials/member.js +36 -0
- package/dist/lib/output/themes/default/partials/member.signature.body.d.ts +6 -0
- package/dist/lib/output/themes/default/partials/member.signature.body.js +33 -0
- package/dist/lib/output/themes/default/partials/member.signature.title.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/member.signature.title.js +9 -0
- package/dist/lib/output/themes/default/partials/member.signatures.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.signatures.js +9 -0
- package/dist/lib/output/themes/default/partials/member.sources.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/member.sources.js +55 -0
- package/dist/lib/output/themes/default/partials/members.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/members.js +17 -0
- package/dist/lib/output/themes/default/partials/moduleReflection.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/moduleReflection.js +68 -0
- package/dist/lib/output/themes/default/partials/navigation.d.ts +10 -0
- package/dist/lib/output/themes/default/partials/navigation.js +144 -0
- package/dist/lib/output/themes/default/partials/reflectionPreview.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/reflectionPreview.js +26 -0
- package/dist/lib/output/themes/default/partials/toolbar.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/toolbar.js +13 -0
- package/dist/lib/output/themes/default/partials/type.d.ts +5 -0
- package/dist/lib/output/themes/default/partials/type.js +9 -0
- package/dist/lib/output/themes/default/partials/typeAndParent.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/typeAndParent.js +28 -0
- package/dist/lib/output/themes/default/partials/typeDetails.d.ts +8 -0
- package/dist/lib/output/themes/default/partials/typeDetails.js +284 -0
- package/dist/lib/output/themes/default/partials/typeParameters.d.ts +4 -0
- package/dist/lib/output/themes/default/partials/typeParameters.js +26 -0
- package/dist/lib/output/themes/default/templates/document.d.ts +5 -0
- package/dist/lib/output/themes/default/templates/document.js +3 -0
- package/dist/lib/output/themes/default/templates/hierarchy.d.ts +5 -0
- package/dist/lib/output/themes/default/templates/hierarchy.js +31 -0
- package/dist/lib/output/themes/default/templates/index.d.ts +5 -0
- package/dist/lib/output/themes/default/templates/index.js +3 -0
- package/dist/lib/output/themes/default/templates/reflection.d.ts +5 -0
- package/dist/lib/output/themes/default/templates/reflection.js +53 -0
- package/dist/lib/output/themes/lib.d.ts +44 -0
- package/dist/lib/output/themes/lib.js +218 -0
- package/dist/lib/serialization/components.d.ts +22 -0
- package/dist/lib/serialization/components.js +1 -0
- package/dist/lib/serialization/deserializer.d.ts +70 -0
- package/dist/lib/serialization/deserializer.js +235 -0
- package/dist/lib/serialization/events.d.ts +17 -0
- package/dist/lib/serialization/events.js +18 -0
- package/dist/lib/serialization/index.d.ts +5 -0
- package/dist/lib/serialization/index.js +4 -0
- package/dist/lib/serialization/schema.d.ts +283 -0
- package/dist/lib/serialization/schema.js +32 -0
- package/dist/lib/serialization/serializer.d.ts +52 -0
- package/dist/lib/serialization/serializer.js +65 -0
- package/dist/lib/utils/ValidatingFileRegistry.d.ts +12 -0
- package/dist/lib/utils/ValidatingFileRegistry.js +52 -0
- package/dist/lib/utils/component.d.ts +38 -0
- package/dist/lib/utils/component.js +41 -0
- package/dist/lib/utils/compress.d.ts +7 -0
- package/dist/lib/utils/compress.js +13 -0
- package/dist/lib/utils/declaration-maps.d.ts +3 -0
- package/dist/lib/utils/declaration-maps.js +51 -0
- package/dist/lib/utils/entry-point.d.ts +50 -0
- package/dist/lib/utils/entry-point.js +330 -0
- package/dist/lib/utils/fs.d.ts +65 -0
- package/dist/lib/utils/fs.js +372 -0
- package/dist/lib/utils/general.d.ts +4 -0
- package/dist/lib/utils/general.js +25 -0
- package/dist/lib/utils/highlighter.d.ts +9 -0
- package/dist/lib/utils/highlighter.js +150 -0
- 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 +67 -0
- package/dist/lib/utils/html.js +635 -0
- package/dist/lib/utils/index.d.ts +17 -0
- package/dist/lib/utils/index.js +15 -0
- package/dist/lib/utils/loggers.d.ts +10 -0
- package/dist/lib/utils/loggers.js +71 -0
- package/dist/lib/utils/options/declaration.d.ts +514 -0
- package/dist/lib/utils/options/declaration.js +443 -0
- package/dist/lib/utils/options/defaults.d.ts +20 -0
- package/dist/lib/utils/options/defaults.js +104 -0
- package/dist/lib/utils/options/help.d.ts +7 -0
- package/dist/lib/utils/options/help.js +63 -0
- package/dist/lib/utils/options/index.d.ts +6 -0
- package/dist/lib/utils/options/index.js +4 -0
- package/dist/lib/utils/options/options.d.ts +199 -0
- package/dist/lib/utils/options/options.js +273 -0
- package/dist/lib/utils/options/readers/arguments.d.ts +15 -0
- package/dist/lib/utils/options/readers/arguments.js +109 -0
- package/dist/lib/utils/options/readers/index.d.ts +4 -0
- package/dist/lib/utils/options/readers/index.js +4 -0
- package/dist/lib/utils/options/readers/package-json.d.ts +9 -0
- package/dist/lib/utils/options/readers/package-json.js +40 -0
- package/dist/lib/utils/options/readers/tsconfig.d.ts +14 -0
- package/dist/lib/utils/options/readers/tsconfig.js +172 -0
- package/dist/lib/utils/options/readers/typedoc.d.ts +33 -0
- package/dist/lib/utils/options/readers/typedoc.js +136 -0
- package/dist/lib/utils/options/sources/index.d.ts +1 -0
- package/dist/lib/utils/options/sources/index.js +1 -0
- package/dist/lib/utils/options/sources/typedoc.d.ts +2 -0
- package/dist/lib/utils/options/sources/typedoc.js +876 -0
- package/dist/lib/utils/options/tsdoc-defaults.d.ts +6 -0
- package/dist/lib/utils/options/tsdoc-defaults.js +94 -0
- package/dist/lib/utils/package-manifest.d.ts +11 -0
- package/dist/lib/utils/package-manifest.js +84 -0
- package/dist/lib/utils/paths.d.ts +27 -0
- package/dist/lib/utils/paths.js +127 -0
- package/dist/lib/utils/perf.d.ts +6 -0
- package/dist/lib/utils/perf.js +86 -0
- package/dist/lib/utils/plugins.d.ts +3 -0
- package/dist/lib/utils/plugins.js +61 -0
- package/dist/lib/utils/reflections.d.ts +5 -0
- package/dist/lib/utils/reflections.js +64 -0
- package/dist/lib/utils/sort.d.ts +11 -0
- package/dist/lib/utils/sort.js +153 -0
- package/dist/lib/utils/tsconfig.d.ts +5 -0
- package/dist/lib/utils/tsconfig.js +60 -0
- package/dist/lib/utils/tsutils.d.ts +3 -0
- package/dist/lib/utils/tsutils.js +23 -0
- package/dist/lib/utils-common/array.d.ts +57 -0
- package/dist/lib/utils-common/array.js +152 -0
- package/dist/lib/utils-common/declarationReference.d.ts +42 -0
- package/dist/lib/utils-common/declarationReference.js +341 -0
- package/dist/lib/utils-common/enum.d.ts +9 -0
- package/dist/lib/utils-common/enum.js +27 -0
- package/dist/lib/utils-common/events.d.ts +29 -0
- package/dist/lib/utils-common/events.js +49 -0
- package/dist/lib/utils-common/general.d.ts +40 -0
- package/dist/lib/utils-common/general.js +22 -0
- package/dist/lib/utils-common/hooks.d.ts +51 -0
- package/dist/lib/utils-common/hooks.js +90 -0
- package/dist/lib/utils-common/i18n.d.ts +18 -0
- package/dist/lib/utils-common/i18n.js +39 -0
- package/dist/lib/utils-common/index.d.ts +16 -0
- package/dist/lib/utils-common/index.js +17 -0
- package/dist/lib/utils-common/jsx.d.ts +53 -0
- package/dist/lib/utils-common/jsx.elements.d.ts +949 -0
- package/dist/lib/utils-common/jsx.elements.js +3 -0
- package/dist/lib/utils-common/jsx.js +187 -0
- package/dist/lib/utils-common/logger.d.ts +97 -0
- package/dist/lib/utils-common/logger.js +129 -0
- package/dist/lib/utils-common/map.d.ts +23 -0
- package/dist/lib/utils-common/map.js +63 -0
- package/dist/lib/utils-common/minimalSourceFile.d.ts +12 -0
- package/dist/lib/utils-common/minimalSourceFile.js +43 -0
- package/dist/lib/utils-common/path.d.ts +42 -0
- package/dist/lib/utils-common/path.js +130 -0
- package/dist/lib/utils-common/set.d.ts +3 -0
- package/dist/lib/utils-common/set.js +23 -0
- package/dist/lib/utils-common/string.d.ts +11 -0
- package/dist/lib/utils-common/string.js +84 -0
- package/dist/lib/utils-common/validation.d.ts +33 -0
- package/dist/lib/utils-common/validation.js +50 -0
- package/dist/lib/validation/documentation.d.ts +3 -0
- package/dist/lib/validation/documentation.js +91 -0
- package/dist/lib/validation/exports.d.ts +3 -0
- package/dist/lib/validation/exports.js +65 -0
- package/dist/lib/validation/links.d.ts +3 -0
- package/dist/lib/validation/links.js +78 -0
- package/dist/lib/validation/unusedMergeModuleWith.d.ts +3 -0
- package/dist/lib/validation/unusedMergeModuleWith.js +12 -0
- package/package.json +161 -0
- package/static/main.js +58 -0
- package/static/style.css +1633 -0
- package/tsdoc.json +247 -0
- package/typedoc-config.schema.json +941 -0
|
@@ -0,0 +1,452 @@
|
|
|
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
|
+
file_0_changed_restarting: "配置文件 {0} 已更改:需要重新启动……";
|
|
9
|
+
file_0_changed_rebuilding: "文件 {0} 已更改:正在重新构建输出……";
|
|
10
|
+
found_0_errors_and_1_warnings: "发现 {0} 个错误和 {1} 个警告";
|
|
11
|
+
output_0_could_not_be_generated: "由于以上错误无法生成 {0} 输出";
|
|
12
|
+
output_0_generated_at_1: "已生成 {0} 输出,位于 {1}";
|
|
13
|
+
no_entry_points_for_packages: string;
|
|
14
|
+
failed_to_find_packages: string;
|
|
15
|
+
nested_packages_unsupported_0: "位于 {0} 的项目已将 entryPointStrategy 设置为包,但不支持嵌套包";
|
|
16
|
+
package_option_0_should_be_specified_at_root: "由 packageOptions 设置的选项 {0} 仅在根级别有效";
|
|
17
|
+
previous_error_occurred_when_reading_options_for_0: "读取 {0} 处的包的选项时发生上一个错误";
|
|
18
|
+
converting_project_at_0: "正在转换 {0} 处的项目";
|
|
19
|
+
failed_to_convert_packages: string;
|
|
20
|
+
merging_converted_projects: string;
|
|
21
|
+
no_entry_points_to_merge: string;
|
|
22
|
+
entrypoint_did_not_match_files_0: "入口点 glob {0} 与任何文件均不匹配";
|
|
23
|
+
failed_to_parse_json_0: "无法将 {0} 处的文件解析为 json";
|
|
24
|
+
failed_to_read_0_when_processing_document_tag_in_1: "处理 {1} 中注释的 @document 标签时无法读取文件 {0}";
|
|
25
|
+
failed_to_read_0_when_processing_project_document: "添加项目文档时无法读取文件 {0}";
|
|
26
|
+
failed_to_read_0_when_processing_document_child_in_1: "处理 {1} 中的文档子项时无法读取文件 {0}";
|
|
27
|
+
frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "{0} 中的 Frontmatter 子项应为字符串数组或具有字符串值的对象";
|
|
28
|
+
converting_union_as_interface: string;
|
|
29
|
+
converting_0_as_class_requires_value_declaration: "将 {0} 转换为类需要表示非类型值的声明";
|
|
30
|
+
converting_0_as_class_without_construct_signatures: "{0} 正在转换为类,但没有任何构造签名";
|
|
31
|
+
comment_for_0_should_not_contain_block_or_modifier_tags: "{0} 的注释不应包含任何块级标签或修饰符标签";
|
|
32
|
+
symbol_0_has_multiple_declarations_with_comment: "{0} 有多个带注释的声明。将使用任意注释";
|
|
33
|
+
comments_for_0_are_declared_at_1: "{0} 的注释声明于:\n{1}";
|
|
34
|
+
multiple_type_parameters_on_template_tag_unsupported: string;
|
|
35
|
+
failed_to_find_jsdoc_tag_for_name_0: "解析注释后无法找到 {0} 的 JSDoc 标签,请提交错误报告";
|
|
36
|
+
relative_path_0_is_not_a_file_and_will_not_be_copied_to_output: "找不到相对路径 {0} 对应的文件,该文件不会被复制至输出目录";
|
|
37
|
+
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "内联 @inheritDoc 标签不应出现在块级标签内,因为它不会在 {0} 处的注释中被处理。";
|
|
38
|
+
at_most_one_remarks_tag_expected_in_comment_at_0: "注释中最多应有一个 @remarks 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
39
|
+
at_most_one_returns_tag_expected_in_comment_at_0: "注释中最多应有一个 @returns 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
40
|
+
at_most_one_inheritdoc_tag_expected_in_comment_at_0: "注释中最多应有一个 @inheritDoc 标签,忽略 {0} 处注释中除第一个标签之外的所有标签";
|
|
41
|
+
content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "摘要部分的内容将被 {0} 处注释中的 @inheritDoc 标签覆盖";
|
|
42
|
+
content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "@remarks 块中的内容将被 {0} 处注释中的 @inheritDoc 标签覆盖";
|
|
43
|
+
example_tag_literal_name: string;
|
|
44
|
+
inheritdoc_tag_properly_capitalized: string;
|
|
45
|
+
treating_unrecognized_tag_0_as_modifier: "将无法识别的标签 {0} 视为修饰标签";
|
|
46
|
+
unmatched_closing_brace: string;
|
|
47
|
+
unescaped_open_brace_without_inline_tag: string;
|
|
48
|
+
unknown_block_tag_0: "遇到未知的块级标签 {0}";
|
|
49
|
+
unknown_inline_tag_0: "遇到未知的内联标签 {0}";
|
|
50
|
+
open_brace_within_inline_tag: string;
|
|
51
|
+
inline_tag_not_closed: string;
|
|
52
|
+
comment_for_0_links_to_1_not_included_in_docs_use_external_link_2: "{0} 注释中指向 “{1}” 的已解析的链接不会被包含在文档中。请将 {2} 导出或添加至 externalSymbolLinkMappings 选项以修复该警告";
|
|
53
|
+
failed_to_resolve_link_to_0_in_comment_for_1: "无法解析 {1} 注释中指向 “{0}” 的链接";
|
|
54
|
+
failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: "无法解析 {1} 的注释中指向 “{0}” 的链接。您可能想要 “{2}”";
|
|
55
|
+
failed_to_resolve_link_to_0_in_readme_for_1: "无法解析 {1} 的自述文件中指向 “{0}” 的链接";
|
|
56
|
+
failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: "无法解析 {1} 的自述文件中指向 “{0}” 的链接。您可能想要 “{2}”";
|
|
57
|
+
failed_to_resolve_link_to_0_in_document_1: "无法解析文档 {1} 中指向 “{0}” 的链接";
|
|
58
|
+
failed_to_resolve_link_to_0_in_document_1_may_have_meant_2: "无法解析文档 {1} 中指向 “{0}” 的链接。您可能想要 “{2}”";
|
|
59
|
+
type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{0} 在 {1} 中定义,被 {2} 引用,但未包含在文档中";
|
|
60
|
+
reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{0} ({1}),在 {2} 中定义,没有任何文档";
|
|
61
|
+
invalid_intentionally_not_documented_names_0: "以下的限定反射名称被设定为刻意无文档说明,但它们要么未在文档中被引用,要么已有文档说明:\n\t{0}";
|
|
62
|
+
invalid_intentionally_not_exported_symbols_0: "以下符号被设定为刻意非导出,但它们要么未在文档中被引用,要么已为导出符号:\n{0}";
|
|
63
|
+
reflection_0_has_unused_mergeModuleWith_tag: "{0} 中存在无法解析的 @mergeModuleWith 标签";
|
|
64
|
+
reflection_0_links_to_1_with_text_2_but_resolved_to_3: "“{0}”中的链接“{2}”指向“{1}”,目标虽然存在但并没有直接的链接,因此将改为链接至“{3}”。";
|
|
65
|
+
not_all_search_category_boosts_used_0: "文档中并未使用 searchCategoryBoosts 中指定的所有类别。未使用的类别包括:\n{0}";
|
|
66
|
+
not_all_search_group_boosts_used_0: "文档中并未使用 searchGroupBoosts 中指定的所有组。未使用的组为:\n{0}";
|
|
67
|
+
comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "{0} 的注释中包含了 “{1}” 的 @categoryDescription,但该类别中没有子项";
|
|
68
|
+
comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "{0} 的注释中包含了 “{1}” 的 @groupDescription,但该分组中没有子项";
|
|
69
|
+
comment_for_0_specifies_1_as_sort_strategy_but_only_2_is_valid: "{0} 的注释中指定的 “{1}” 的 @sortStrategy 无效,以下是有效的选项:\n\t{2}";
|
|
70
|
+
label_0_for_1_cannot_be_referenced: "无法使用声明引用来引用 {1} 的标签“{0}”。标签只能包含 A-Z、0-9 和 _,并且不能以数字开头";
|
|
71
|
+
modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "修饰符标签 {0} 与 {2} 注释中的 {1} 互斥";
|
|
72
|
+
signature_0_has_unused_param_with_name_1: "签名 {0} 有一个名为“{1}”的 @param,但未被使用";
|
|
73
|
+
declaration_reference_in_inheritdoc_for_0_not_fully_parsed: "@inheritDoc 中对 {0} 的声明引用未完全解析,可能会解析不正确";
|
|
74
|
+
failed_to_find_0_to_inherit_comment_from_in_1: "在 {1} 的注释中找不到要继承的注释“{0}”";
|
|
75
|
+
reflection_0_tried_to_copy_comment_from_1_but_source_had_no_comment: "{0} 尝试使用 @inheritDoc 从 {1} 复制注释,但源没有相关注释";
|
|
76
|
+
inheritdoc_circular_inheritance_chain_0: "@inheritDoc 指定循环继承链:{0}";
|
|
77
|
+
provided_readme_at_0_could_not_be_read: "提供的 README 路径无法读取 {0}";
|
|
78
|
+
defaulting_project_name: string;
|
|
79
|
+
disable_git_set_but_not_source_link_template: string;
|
|
80
|
+
disable_git_set_and_git_revision_used: string;
|
|
81
|
+
git_remote_0_not_valid: "提供的 git 远程“{0}”无效。源链接将失效";
|
|
82
|
+
reflection_0_tried_to_merge_into_child_1: "反射 {0} 尝试使用 @mergeModuleWith 合并到其子项之一:{1}";
|
|
83
|
+
include_0_in_1_specified_2_resolved_to_3_does_not_exist: "{1} 的注释中 {0} 标签指定了包含 “{2}”,解析为 “{3}”,该文件并不存在或并非文件。";
|
|
84
|
+
include_0_in_1_specified_2_circular_include_3: "{1} 的注释中 {0} 标签指定了包含 “{2}”,导致了循环包含:\n\t{3}";
|
|
85
|
+
include_0_tag_in_1_specified_2_file_3_region_4_region_not_found: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中标记为 “{4}” 的区域,但在对应的文件找不到该区域。";
|
|
86
|
+
include_0_tag_in_1_region_2_region_not_supported: "{1} 中的 标签 {0} 指定了 “{2}”,但尚不支持对应的文件扩展名。";
|
|
87
|
+
include_0_tag_in_1_specified_2_file_3_region_4_region_close_not_found: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中标记为 “{4}” 的区域,但在对应的文件中找不到该区域的结束注释。";
|
|
88
|
+
include_0_tag_in_1_specified_2_file_3_region_4_region_open_not_found: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中标记为 “{4}” 的区域,但在对应的文件中找不到该区域的起始注释。";
|
|
89
|
+
include_0_tag_in_1_specified_2_file_3_region_4_region_close_found_multiple_times: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中标记为 “{4}” 的区域,但在对应的文件中该区域的结束注释出现了多次。";
|
|
90
|
+
include_0_tag_in_1_specified_2_file_3_region_4_region_open_found_multiple_times: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中标记为 “{4}” 的区域,但在对应的文件中该区域的起始注释出现了多次。";
|
|
91
|
+
include_0_tag_in_1_specified_2_file_3_region_4_region_found_multiple_times: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中标记为 “{4}” 的区域,但在对应的文件中该区域出现了多次。";
|
|
92
|
+
include_0_tag_in_1_specified_2_file_3_region_4_region_empty: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中标记为 “{4}” 的区域,但在对应的文件中该区域不包含内容或仅包含空白字符。";
|
|
93
|
+
include_0_tag_in_1_specified_2_file_3_lines_4_invalid_range: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中的 {4} 行,但指定的行范围无效。";
|
|
94
|
+
include_0_tag_in_1_specified_2_file_3_lines_4_but_only_5_lines: "{1} 中的标签 {0} 指定 “{2}” 以包含文件 “{3}” 中的 {4} 行,但该文件只有 {5} 行。";
|
|
95
|
+
custom_css_file_0_does_not_exist: "{0} 处的自定义 CSS 文件不存在";
|
|
96
|
+
custom_js_file_0_does_not_exist: "{0} 处的自定义 JavaScript 文件不存在";
|
|
97
|
+
unsupported_highlight_language_0_not_highlighted_in_comment_for_1: "{1} 的注释中使用了不支持的高亮语言 {0} ,因此该语言将不会被高亮";
|
|
98
|
+
unloaded_language_0_not_highlighted_in_comment_for_1: "{1} 的注释中语言为 {0} 的代码块将不会被高亮,因为该语言未包含在 highlightLanguages 选项中";
|
|
99
|
+
yaml_frontmatter_not_an_object: string;
|
|
100
|
+
could_not_write_0: "无法写入 {0}";
|
|
101
|
+
could_not_empty_output_directory_0: "无法清空输出目录 {0}";
|
|
102
|
+
could_not_create_output_directory_0: "无法创建输出目录 {0}";
|
|
103
|
+
theme_0_is_not_defined_available_are_1: "主题“{0}”未定义。可用主题为:{1}";
|
|
104
|
+
router_0_is_not_defined_available_are_1: "路由 “{0}” 未定义。可用的路由为:{1}";
|
|
105
|
+
reflection_0_links_to_1_but_anchor_does_not_exist_try_2: "{0} 链接至 {1},但对应锚点不存在。你是否是指:\n\t{2}";
|
|
106
|
+
no_entry_points_provided: string;
|
|
107
|
+
unable_to_find_any_entry_points: string;
|
|
108
|
+
watch_does_not_support_packages_mode: string;
|
|
109
|
+
watch_does_not_support_merge_mode: string;
|
|
110
|
+
entry_point_0_not_in_program: "入口点 {0} 未被 tsconfig 中的“files”或“include”选项引用";
|
|
111
|
+
failed_to_resolve_0_to_ts_path: "无法将 package.json 中的入口点 {0} 解析至 TypeScript 源文件";
|
|
112
|
+
use_expand_or_glob_for_files_in_dir: string;
|
|
113
|
+
glob_0_did_not_match_any_files: "glob {0} 与任何文件均不匹配";
|
|
114
|
+
entry_point_0_did_not_match_any_files_after_exclude: "应用排除模式后,glob {0} 没有匹配任何文件";
|
|
115
|
+
entry_point_0_did_not_exist: "提供的入口点 {0} 不存在";
|
|
116
|
+
entry_point_0_did_not_match_any_packages: "入口点 glob {0} 与任何包含 package.json 的目录不匹配";
|
|
117
|
+
file_0_not_an_object: "文件 {0} 不是对象";
|
|
118
|
+
serialized_project_referenced_0_not_part_of_project: "序列化项目引用了反射 {0},但它不是项目的一部分";
|
|
119
|
+
saved_relative_path_0_resolved_from_1_does_not_exist: "序列化项目引用的 {0} 不存在或无法在 {1} 下找到";
|
|
120
|
+
circular_reference_extends_0: "{0} 的“extends”字段出现循环引用";
|
|
121
|
+
failed_resolve_0_to_file_in_1: "无法将 {0} 解析为 {1} 中的文件";
|
|
122
|
+
glob_0_should_use_posix_slash: "该 glob “{0}” 中转义了不是特殊字符的字符。输入 TypeDoc 的 glob 可能不会使用 Windows 路径分隔符(\\),请尝试将其替换为 POSIX 路径分隔符(/)";
|
|
123
|
+
option_0_can_only_be_specified_by_config_file: "“{0}”选项只能通过配置文件指定";
|
|
124
|
+
option_0_expected_a_value_but_none_provided: "--{0} 需要一个值,但没有给出任何参数";
|
|
125
|
+
unknown_option_0_may_have_meant_1: "未知选项:{0},你可能指的是:\n\t{1}";
|
|
126
|
+
typedoc_key_in_0_ignored: "{0} 中的“typedoc”键已被旧包 entryPointStrategy 使用,将被忽略";
|
|
127
|
+
typedoc_options_must_be_object_in_0: "无法解析 {0} 中的“typedocOptions”字段,请确保它存在且包含对象";
|
|
128
|
+
tsconfig_file_0_does_not_exist: "tsconfig 文件 {0} 不存在";
|
|
129
|
+
tsconfig_file_specifies_options_file: string;
|
|
130
|
+
tsconfig_file_specifies_tsconfig_file: string;
|
|
131
|
+
tags_0_defined_in_typedoc_json_overwritten_by_tsdoc_json: "typedoc.json 中定义的 {0} 将被 tsdoc.json 中的配置覆盖";
|
|
132
|
+
failed_read_tsdoc_json_0: "无法读取位于 {0} 的 tsdoc.json 文件";
|
|
133
|
+
invalid_tsdoc_json_0: "文件 {0} 不是有效的 tsdoc.json 文件";
|
|
134
|
+
options_file_0_does_not_exist: "选项文件 {0} 不存在";
|
|
135
|
+
failed_read_options_file_0: "无法解析 {0},请确保其存在并导出对象";
|
|
136
|
+
invalid_plugin_0_missing_load_function: "插件 {0} 中的结构无效,未找到加载函数";
|
|
137
|
+
plugin_0_could_not_be_loaded: "无法加载插件 {0}";
|
|
138
|
+
help_options: string;
|
|
139
|
+
help_tsconfig: string;
|
|
140
|
+
help_compilerOptions: string;
|
|
141
|
+
help_lang: string;
|
|
142
|
+
help_locales: string;
|
|
143
|
+
help_packageOptions: string;
|
|
144
|
+
help_entryPoints: string;
|
|
145
|
+
help_entryPointStrategy: string;
|
|
146
|
+
help_alwaysCreateEntryPointModule: string;
|
|
147
|
+
help_projectDocuments: string;
|
|
148
|
+
help_exclude: string;
|
|
149
|
+
help_externalPattern: string;
|
|
150
|
+
help_excludeExternals: string;
|
|
151
|
+
help_excludeNotDocumented: string;
|
|
152
|
+
help_excludeNotDocumentedKinds: string;
|
|
153
|
+
help_excludeInternal: string;
|
|
154
|
+
help_excludeCategories: string;
|
|
155
|
+
help_excludeProtected: string;
|
|
156
|
+
help_excludeReferences: string;
|
|
157
|
+
help_externalSymbolLinkMappings: string;
|
|
158
|
+
help_out: string;
|
|
159
|
+
help_html: string;
|
|
160
|
+
help_json: string;
|
|
161
|
+
help_pretty: string;
|
|
162
|
+
help_emit: string;
|
|
163
|
+
help_theme: string;
|
|
164
|
+
help_router: string;
|
|
165
|
+
help_lightHighlightTheme: string;
|
|
166
|
+
help_darkHighlightTheme: string;
|
|
167
|
+
help_highlightLanguages: string;
|
|
168
|
+
help_ignoredHighlightLanguages: string;
|
|
169
|
+
help_typePrintWidth: string;
|
|
170
|
+
help_customCss: string;
|
|
171
|
+
help_customJs: string;
|
|
172
|
+
help_markdownItOptions: string;
|
|
173
|
+
help_markdownItLoader: string;
|
|
174
|
+
help_maxTypeConversionDepth: string;
|
|
175
|
+
help_name: string;
|
|
176
|
+
help_includeVersion: string;
|
|
177
|
+
help_disableSources: string;
|
|
178
|
+
help_sourceLinkTemplate: string;
|
|
179
|
+
help_gitRevision: string;
|
|
180
|
+
help_gitRemote: string;
|
|
181
|
+
help_disableGit: string;
|
|
182
|
+
help_basePath: string;
|
|
183
|
+
help_excludeTags: string;
|
|
184
|
+
help_notRenderedTags: string;
|
|
185
|
+
help_cascadedModifierTags: string;
|
|
186
|
+
help_readme: string;
|
|
187
|
+
help_cname: string;
|
|
188
|
+
help_favicon: string;
|
|
189
|
+
help_sourceLinkExternal: string;
|
|
190
|
+
help_markdownLinkExternal: string;
|
|
191
|
+
help_githubPages: string;
|
|
192
|
+
help_hostedBaseUrl: string;
|
|
193
|
+
help_useHostedBaseUrlForAbsoluteLinks: string;
|
|
194
|
+
help_hideGenerator: string;
|
|
195
|
+
help_customFooterHtml: string;
|
|
196
|
+
help_customFooterHtmlDisableWrapper: string;
|
|
197
|
+
help_cacheBust: string;
|
|
198
|
+
help_searchInComments: string;
|
|
199
|
+
help_searchInDocuments: string;
|
|
200
|
+
help_cleanOutputDir: string;
|
|
201
|
+
help_titleLink: string;
|
|
202
|
+
help_navigationLinks: string;
|
|
203
|
+
help_sidebarLinks: string;
|
|
204
|
+
help_navigationLeaves: string;
|
|
205
|
+
help_headings: string;
|
|
206
|
+
help_sluggerConfiguration: string;
|
|
207
|
+
help_navigation: string;
|
|
208
|
+
help_includeHierarchySummary: string;
|
|
209
|
+
help_visibilityFilters: string;
|
|
210
|
+
help_searchCategoryBoosts: string;
|
|
211
|
+
help_searchGroupBoosts: string;
|
|
212
|
+
help_useFirstParagraphOfCommentAsSummary: string;
|
|
213
|
+
help_jsDocCompatibility: string;
|
|
214
|
+
help_suppressCommentWarningsInDeclarationFiles: string;
|
|
215
|
+
help_commentStyle: string;
|
|
216
|
+
help_useTsLinkResolution: string;
|
|
217
|
+
help_preserveLinkText: string;
|
|
218
|
+
help_blockTags: string;
|
|
219
|
+
help_inlineTags: string;
|
|
220
|
+
help_modifierTags: string;
|
|
221
|
+
help_categorizeByGroup: string;
|
|
222
|
+
help_groupReferencesByType: string;
|
|
223
|
+
help_defaultCategory: string;
|
|
224
|
+
help_categoryOrder: string;
|
|
225
|
+
help_groupOrder: string;
|
|
226
|
+
help_sort: string;
|
|
227
|
+
help_sortEntryPoints: string;
|
|
228
|
+
help_kindSortOrder: string;
|
|
229
|
+
help_watch: string;
|
|
230
|
+
help_preserveWatchOutput: string;
|
|
231
|
+
help_skipErrorChecking: string;
|
|
232
|
+
help_help: string;
|
|
233
|
+
help_version: string;
|
|
234
|
+
help_showConfig: string;
|
|
235
|
+
help_plugin: string;
|
|
236
|
+
help_logLevel: string;
|
|
237
|
+
help_treatWarningsAsErrors: string;
|
|
238
|
+
help_treatValidationWarningsAsErrors: string;
|
|
239
|
+
help_intentionallyNotExported: string;
|
|
240
|
+
help_requiredToBeDocumented: string;
|
|
241
|
+
help_packagesRequiringDocumentation: string;
|
|
242
|
+
help_intentionallyNotDocumented: string;
|
|
243
|
+
help_validation: string;
|
|
244
|
+
unknown_option_0_you_may_have_meant_1: "未知选项“{0}” 你可能指的是:\n{1}";
|
|
245
|
+
option_0_must_be_between_1_and_2: "{0} 必须介于 {1} 和 {2} 之间";
|
|
246
|
+
option_0_must_be_equal_to_or_greater_than_1: "{0} 必须等于或大于 {1}";
|
|
247
|
+
option_0_must_be_less_than_or_equal_to_1: "{0} 必须小于或等于 {1}";
|
|
248
|
+
option_0_must_be_one_of_1: "{0} 必须是 {1} 之一";
|
|
249
|
+
flag_0_is_not_valid_for_1_expected_2: "标志“{0}”对 {1} 无效,应为 {2} 之一";
|
|
250
|
+
expected_object_with_flag_values_for_0: "预期为一个带有标志值为 {0} 或 true/false 的对象";
|
|
251
|
+
flag_values_for_0_must_be_booleans: "{0} 的标志值必须是布尔值";
|
|
252
|
+
locales_must_be_an_object: string;
|
|
253
|
+
exclude_not_documented_specified_0_valid_values_are_1: "excludeNotDocumentedKinds 只能指定已知值,并且提供了无效值 ({0})。有效类型为:\n{1}";
|
|
254
|
+
external_symbol_link_mappings_must_be_object: string;
|
|
255
|
+
highlight_theme_0_must_be_one_of_1: "{0} 必须是下列之一:{1}";
|
|
256
|
+
highlightLanguages_contains_invalid_languages_0: "highlightLanguages 包含无效语言:{0},运行 typedoc --help 获取受支持语言的列表";
|
|
257
|
+
hostedBaseUrl_must_start_with_http: string;
|
|
258
|
+
useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: string;
|
|
259
|
+
favicon_must_have_one_of_the_following_extensions_0: "favicon 的后缀名必须是下列之一:{0}";
|
|
260
|
+
option_0_must_be_an_object: "“{0}”选项必须是非数组对象";
|
|
261
|
+
option_0_must_be_an_array_of_string: "“{0}”选项必须是字符串数组";
|
|
262
|
+
option_0_must_be_an_array_of_string_or_functions: "“{0}”选项必须是由字符串或函数构成的数组";
|
|
263
|
+
option_0_must_be_a_function: "‘{0}’ 选项必须是一个函数";
|
|
264
|
+
option_0_must_be_object_with_urls: "{0} 必须是具有字符串标签作为键和 URL 值的对象";
|
|
265
|
+
visibility_filters_only_include_0: "visibilityFilters 只能包含以下非@键:{0}";
|
|
266
|
+
visibility_filters_must_be_booleans: string;
|
|
267
|
+
option_0_values_must_be_numbers: "{0} 的所有值都必须是数字";
|
|
268
|
+
option_0_values_must_be_array_of_tags: "{0} 必须是有效标签名称的数组";
|
|
269
|
+
option_0_specified_1_but_only_2_is_valid: "{0} 只能指定已知值,并且提供了无效值 ({1})。有效的排序策略为:\n{2}";
|
|
270
|
+
option_outputs_must_be_array: string;
|
|
271
|
+
specified_output_0_has_not_been_defined: "指定的输出类型 {0} 未被定义。";
|
|
272
|
+
alert_note: string;
|
|
273
|
+
alert_tip: string;
|
|
274
|
+
alert_important: string;
|
|
275
|
+
alert_warning: string;
|
|
276
|
+
alert_caution: string;
|
|
277
|
+
kind_project: string;
|
|
278
|
+
kind_module: string;
|
|
279
|
+
kind_namespace: string;
|
|
280
|
+
kind_enum: string;
|
|
281
|
+
kind_enum_member: string;
|
|
282
|
+
kind_variable: string;
|
|
283
|
+
kind_function: string;
|
|
284
|
+
kind_class: string;
|
|
285
|
+
kind_interface: string;
|
|
286
|
+
kind_constructor: string;
|
|
287
|
+
kind_property: string;
|
|
288
|
+
kind_method: string;
|
|
289
|
+
kind_call_signature: string;
|
|
290
|
+
kind_index_signature: string;
|
|
291
|
+
kind_constructor_signature: string;
|
|
292
|
+
kind_parameter: string;
|
|
293
|
+
kind_type_literal: string;
|
|
294
|
+
kind_type_parameter: string;
|
|
295
|
+
kind_accessor: string;
|
|
296
|
+
kind_get_signature: string;
|
|
297
|
+
kind_set_signature: string;
|
|
298
|
+
kind_type_alias: string;
|
|
299
|
+
kind_reference: string;
|
|
300
|
+
kind_document: string;
|
|
301
|
+
kind_plural_project: string;
|
|
302
|
+
kind_plural_module: string;
|
|
303
|
+
kind_plural_namespace: string;
|
|
304
|
+
kind_plural_enum: string;
|
|
305
|
+
kind_plural_enum_member: string;
|
|
306
|
+
kind_plural_variable: string;
|
|
307
|
+
kind_plural_function: string;
|
|
308
|
+
kind_plural_class: string;
|
|
309
|
+
kind_plural_interface: string;
|
|
310
|
+
kind_plural_constructor: string;
|
|
311
|
+
kind_plural_property: string;
|
|
312
|
+
kind_plural_method: string;
|
|
313
|
+
kind_plural_call_signature: string;
|
|
314
|
+
kind_plural_index_signature: string;
|
|
315
|
+
kind_plural_constructor_signature: string;
|
|
316
|
+
kind_plural_parameter: string;
|
|
317
|
+
kind_plural_type_literal: string;
|
|
318
|
+
kind_plural_type_parameter: string;
|
|
319
|
+
kind_plural_accessor: string;
|
|
320
|
+
kind_plural_get_signature: string;
|
|
321
|
+
kind_plural_set_signature: string;
|
|
322
|
+
kind_plural_type_alias: string;
|
|
323
|
+
kind_plural_reference: string;
|
|
324
|
+
kind_plural_document: string;
|
|
325
|
+
flag_private: string;
|
|
326
|
+
flag_protected: string;
|
|
327
|
+
flag_public: string;
|
|
328
|
+
flag_static: string;
|
|
329
|
+
flag_external: string;
|
|
330
|
+
flag_optional: string;
|
|
331
|
+
flag_rest: string;
|
|
332
|
+
flag_abstract: string;
|
|
333
|
+
flag_const: string;
|
|
334
|
+
flag_readonly: string;
|
|
335
|
+
flag_inherited: string;
|
|
336
|
+
theme_implements: string;
|
|
337
|
+
theme_indexable: string;
|
|
338
|
+
theme_type_declaration: string;
|
|
339
|
+
theme_index: string;
|
|
340
|
+
theme_hierarchy: string;
|
|
341
|
+
theme_hierarchy_summary: string;
|
|
342
|
+
theme_hierarchy_view_summary: string;
|
|
343
|
+
theme_implemented_by: string;
|
|
344
|
+
theme_defined_in: string;
|
|
345
|
+
theme_implementation_of: string;
|
|
346
|
+
theme_inherited_from: string;
|
|
347
|
+
theme_overrides: string;
|
|
348
|
+
theme_returns: string;
|
|
349
|
+
theme_generated_using_typedoc: string;
|
|
350
|
+
theme_preparing_search_index: string;
|
|
351
|
+
theme_loading: string;
|
|
352
|
+
theme_settings: string;
|
|
353
|
+
theme_member_visibility: string;
|
|
354
|
+
theme_theme: string;
|
|
355
|
+
theme_os: string;
|
|
356
|
+
theme_light: string;
|
|
357
|
+
theme_dark: string;
|
|
358
|
+
theme_on_this_page: string;
|
|
359
|
+
theme_search: string;
|
|
360
|
+
theme_menu: string;
|
|
361
|
+
theme_permalink: string;
|
|
362
|
+
theme_folder: string;
|
|
363
|
+
theme_copy: string;
|
|
364
|
+
theme_copied: string;
|
|
365
|
+
theme_normally_hidden: string;
|
|
366
|
+
theme_hierarchy_expand: string;
|
|
367
|
+
theme_hierarchy_collapse: string;
|
|
368
|
+
theme_search_index_not_available: string;
|
|
369
|
+
theme_search_no_results_found_for_0: "找不到包含 {0} 的结果";
|
|
370
|
+
theme_search_placeholder: string;
|
|
371
|
+
tag_defaultValue: string;
|
|
372
|
+
tag_deprecated: string;
|
|
373
|
+
tag_example: string;
|
|
374
|
+
tag_param: string;
|
|
375
|
+
tag_privateRemarks: string;
|
|
376
|
+
tag_remarks: string;
|
|
377
|
+
tag_returns: string;
|
|
378
|
+
tag_see: string;
|
|
379
|
+
tag_throws: string;
|
|
380
|
+
tag_typeParam: string;
|
|
381
|
+
tag_author: string;
|
|
382
|
+
tag_callback: string;
|
|
383
|
+
tag_category: string;
|
|
384
|
+
tag_categoryDescription: string;
|
|
385
|
+
tag_default: string;
|
|
386
|
+
tag_document: string;
|
|
387
|
+
tag_extends: string;
|
|
388
|
+
tag_augments: string;
|
|
389
|
+
tag_yields: string;
|
|
390
|
+
tag_group: string;
|
|
391
|
+
tag_groupDescription: string;
|
|
392
|
+
tag_import: string;
|
|
393
|
+
tag_inheritDoc: string;
|
|
394
|
+
tag_jsx: string;
|
|
395
|
+
tag_license: string;
|
|
396
|
+
tag_module: string;
|
|
397
|
+
tag_mergeModuleWith: string;
|
|
398
|
+
tag_prop: string;
|
|
399
|
+
tag_property: string;
|
|
400
|
+
tag_return: string;
|
|
401
|
+
tag_satisfies: string;
|
|
402
|
+
tag_since: string;
|
|
403
|
+
tag_sortStrategy: string;
|
|
404
|
+
tag_template: string;
|
|
405
|
+
tag_type: string;
|
|
406
|
+
tag_typedef: string;
|
|
407
|
+
tag_summary: string;
|
|
408
|
+
tag_preventInline: string;
|
|
409
|
+
tag_inlineType: string;
|
|
410
|
+
tag_preventExpand: string;
|
|
411
|
+
tag_expandType: string;
|
|
412
|
+
tag_link: string;
|
|
413
|
+
tag_label: string;
|
|
414
|
+
tag_linkcode: string;
|
|
415
|
+
tag_linkplain: string;
|
|
416
|
+
tag_include: string;
|
|
417
|
+
tag_includeCode: string;
|
|
418
|
+
tag_alpha: string;
|
|
419
|
+
tag_beta: string;
|
|
420
|
+
tag_eventProperty: string;
|
|
421
|
+
tag_experimental: string;
|
|
422
|
+
tag_internal: string;
|
|
423
|
+
tag_override: string;
|
|
424
|
+
tag_packageDocumentation: string;
|
|
425
|
+
tag_public: string;
|
|
426
|
+
tag_readonly: string;
|
|
427
|
+
tag_sealed: string;
|
|
428
|
+
tag_virtual: string;
|
|
429
|
+
tag_abstract: string;
|
|
430
|
+
tag_class: string;
|
|
431
|
+
tag_disableGroups: string;
|
|
432
|
+
tag_enum: string;
|
|
433
|
+
tag_event: string;
|
|
434
|
+
tag_expand: string;
|
|
435
|
+
tag_hidden: string;
|
|
436
|
+
tag_hideCategories: string;
|
|
437
|
+
tag_hideconstructor: string;
|
|
438
|
+
tag_hideGroups: string;
|
|
439
|
+
tag_ignore: string;
|
|
440
|
+
tag_inline: string;
|
|
441
|
+
tag_interface: string;
|
|
442
|
+
tag_namespace: string;
|
|
443
|
+
tag_function: string;
|
|
444
|
+
tag_overload: string;
|
|
445
|
+
tag_private: string;
|
|
446
|
+
tag_protected: string;
|
|
447
|
+
tag_showCategories: string;
|
|
448
|
+
tag_showGroups: string;
|
|
449
|
+
tag_useDeclaredType: string;
|
|
450
|
+
tag_primaryExport: string;
|
|
451
|
+
};
|
|
452
|
+
export = _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { blockTags, inlineTags, modifierTags } from "../utils/options/tsdoc-defaults.js";
|
|
2
|
+
import translatable from "./locales/en.cjs";
|
|
3
|
+
export type BuiltinTranslatableStringArgs = {
|
|
4
|
+
[K in keyof typeof translatable]: BuildTranslationArguments<(typeof translatable)[K]>;
|
|
5
|
+
} & Record<(typeof blockTags)[number] | (typeof inlineTags)[number] | (typeof modifierTags)[number] extends `@${infer T}` ? `tag_${T}` : never, [
|
|
6
|
+
]>;
|
|
7
|
+
type BuildTranslationArguments<T extends string, Acc extends any[] = []> = T extends `${string}{${bigint}}${infer R}` ? BuildTranslationArguments<R, [...Acc, string]> : Acc;
|
|
8
|
+
export type BuiltinTranslatableStringConstraints = {
|
|
9
|
+
[K in keyof BuiltinTranslatableStringArgs]: TranslationConstraint[BuiltinTranslatableStringArgs[K]["length"]];
|
|
10
|
+
};
|
|
11
|
+
type BuildConstraint<T extends number, Acc extends string = "", U extends number = T> = [T] extends [never] ? `${Acc}${string}` : T extends T ? BuildConstraint<Exclude<U, T>, `${Acc}${string}{${T}}`> : never;
|
|
12
|
+
type TranslationConstraint = [
|
|
13
|
+
string,
|
|
14
|
+
BuildConstraint<0>,
|
|
15
|
+
BuildConstraint<0 | 1>,
|
|
16
|
+
BuildConstraint<0 | 1 | 2>,
|
|
17
|
+
BuildConstraint<0 | 1 | 2 | 3>,
|
|
18
|
+
BuildConstraint<0 | 1 | 2 | 3 | 4>,
|
|
19
|
+
BuildConstraint<0 | 1 | 2 | 3 | 4 | 5>
|
|
20
|
+
];
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import translatable from "./locales/en.cjs";
|
|
2
|
+
// Compiler errors here which says a property is missing indicates that the value on translatable
|
|
3
|
+
// is not a literal string. It should be so that TypeDoc's placeholder replacement detection
|
|
4
|
+
// can validate that all placeholders have been specified.
|
|
5
|
+
({});
|
|
6
|
+
// Compiler errors here which says a property is missing indicates that the key on translatable
|
|
7
|
+
// contains a placeholder _0/_1, etc. but the value does not match the expected constraint.
|
|
8
|
+
translatable;
|