typedoc 0.26.2 → 0.26.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/lib/application.js +1 -1
- package/dist/lib/converter/comments/textParser.js +12 -6
- package/dist/lib/converter/plugins/CommentPlugin.js +2 -4
- package/dist/lib/converter/plugins/LinkResolverPlugin.js +5 -3
- package/dist/lib/internationalization/locales/jp.cjs +2 -2
- package/dist/lib/internationalization/locales/jp.d.cts +1 -320
- package/dist/lib/internationalization/locales/ko.d.cts +1 -230
- package/dist/lib/internationalization/locales/zh.cjs +2 -2
- package/dist/lib/internationalization/locales/zh.d.cts +1 -320
- package/dist/lib/internationalization/translatable.d.ts +6 -4
- package/dist/lib/internationalization/translatable.js +4 -2
- package/dist/lib/models/FileRegistry.js +6 -4
- package/dist/lib/output/events.d.ts +20 -7
- package/dist/lib/output/events.js +20 -0
- package/dist/lib/output/index.d.ts +1 -1
- package/dist/lib/output/themes/default/DefaultTheme.js +25 -16
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.d.ts +3 -2
- package/dist/lib/output/themes/default/DefaultThemeRenderContext.js +0 -2
- package/dist/lib/output/themes/default/partials/member.reference.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/member.reference.js +10 -4
- package/dist/lib/output/themes/default/partials/members.d.ts +1 -1
- package/dist/lib/output/themes/default/partials/members.js +39 -9
- package/dist/lib/output/themes/default/partials/navigation.js +27 -7
- package/dist/lib/utils/array.d.ts +1 -1
- package/dist/lib/utils/array.js +1 -1
- package/dist/lib/utils/enum.d.ts +3 -3
- package/dist/lib/utils/minimalSourceFile.d.ts +1 -1
- package/dist/lib/utils/minimalSourceFile.js +9 -1
- package/dist/lib/utils/options/declaration.d.ts +1 -1
- package/dist/lib/utils/options/tsdoc-defaults.d.ts +1 -1
- package/dist/lib/utils/options/tsdoc-defaults.js +2 -1
- package/dist/lib/validation/links.js +45 -27
- package/package.json +7 -7
- package/static/main.js +4 -4
- package/static/style.css +10 -0
- package/tsdoc.json +4 -0
- package/dist/lib/output/themes/default/partials/members.group.d.ts +0 -4
- package/dist/lib/output/themes/default/partials/members.group.js +0 -25
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export * as Configuration from "./lib/utils/options";
|
|
|
19
19
|
export * from "./lib/models";
|
|
20
20
|
export { Converter, Context, type CommentParserConfig, type DeclarationReference, type SymbolReference, type ComponentPath, type Meaning, type MeaningKeyword, type ExternalResolveResult, type ExternalSymbolResolver, type ConverterEvents, } from "./lib/converter";
|
|
21
21
|
export { Renderer, DefaultTheme, DefaultThemeRenderContext, Slugger, UrlMapping, Theme, PageEvent, RendererEvent, MarkdownEvent, IndexEvent, } from "./lib/output";
|
|
22
|
-
export type { RenderTemplate, RendererHooks, NavigationElement, RendererEvents, } from "./lib/output";
|
|
22
|
+
export type { RenderTemplate, RendererHooks, NavigationElement, RendererEvents, PageHeading, } from "./lib/output";
|
|
23
23
|
export { ArgumentsReader, Option, CommentStyle, JSX, LogLevel, Logger, Options, PackageJsonReader, ParameterHint, ParameterType, TSConfigReader, TypeDocReader, EntryPointStrategy, EventHooks, MinimalSourceFile, normalizePath, } from "./lib/utils";
|
|
24
24
|
export type { OptionsReader, TypeDocOptions, TypeDocOptionMap, ValidationOptions, TypeDocOptionValues, KeyToDeclaration, DeclarationOption, DeclarationOptionBase, StringDeclarationOption, NumberDeclarationOption, BooleanDeclarationOption, ArrayDeclarationOption, MixedDeclarationOption, ObjectDeclarationOption, MapDeclarationOption, FlagsDeclarationOption, DeclarationOptionToOptionType, SortStrategy, ParameterTypeToOptionTypeMap, DocumentationEntryPoint, ManuallyValidatedOption, EnumKeys, JsDocCompatibility, } from "./lib/utils";
|
|
25
25
|
export { JSONOutput, Serializer, type SerializerEvents, Deserializer, type Deserializable, type DeserializerComponent, type SerializerComponent, SerializeEvent, } from "./lib/serialization";
|
package/dist/lib/application.js
CHANGED
|
@@ -471,7 +471,7 @@ let Application = (() => {
|
|
|
471
471
|
out = Path.resolve(out);
|
|
472
472
|
const ser = this.serializer.projectToObject(project, process.cwd());
|
|
473
473
|
const space = this.options.getValue("pretty") ? "\t" : "";
|
|
474
|
-
await (0, index_2.writeFile)(out, JSON.stringify(ser, null, space));
|
|
474
|
+
await (0, index_2.writeFile)(out, JSON.stringify(ser, null, space) + "\n");
|
|
475
475
|
this.logger.info(this.i18n.json_written_to_0((0, paths_1.nicePath)(out)));
|
|
476
476
|
this.logger.verbose(`JSON rendering took ${Date.now() - start}ms`);
|
|
477
477
|
}
|
|
@@ -65,7 +65,7 @@ function textContent(sourcePath, token, i18n, warning, outContent, files, atNewL
|
|
|
65
65
|
lastPartEnd = ref.end;
|
|
66
66
|
data.pos = ref.end;
|
|
67
67
|
if (!ref.target) {
|
|
68
|
-
warning(i18n.
|
|
68
|
+
warning(i18n.relative_path_0_is_not_a_file_and_will_not_be_copied_to_output(token.text.slice(ref.pos, ref.end)), {
|
|
69
69
|
kind: lexer_1.TokenSyntaxKind.Text,
|
|
70
70
|
// ref.pos is relative to the token, but this pos is relative to the file.
|
|
71
71
|
pos: token.pos + ref.pos,
|
|
@@ -134,7 +134,7 @@ function checkMarkdownLink(data, reentry) {
|
|
|
134
134
|
if (link.ok) {
|
|
135
135
|
// Only make a relative-link display part if it's actually a relative link.
|
|
136
136
|
// Discard protocol:// links, unix style absolute paths, and windows style absolute paths.
|
|
137
|
-
if (
|
|
137
|
+
if (isRelativePath(link.str)) {
|
|
138
138
|
return {
|
|
139
139
|
pos: labelEnd + 2,
|
|
140
140
|
end: link.pos,
|
|
@@ -174,7 +174,7 @@ function checkReference(data) {
|
|
|
174
174
|
}
|
|
175
175
|
const link = MdHelpers.parseLinkDestination(token.text, lookahead, token.text.length);
|
|
176
176
|
if (link.ok) {
|
|
177
|
-
if (
|
|
177
|
+
if (isRelativePath(link.str)) {
|
|
178
178
|
return {
|
|
179
179
|
pos: lookahead,
|
|
180
180
|
end: link.pos,
|
|
@@ -207,7 +207,7 @@ function checkAttribute(data, attr) {
|
|
|
207
207
|
if (parser.state === html_1.ParserState.BeforeAttributeValue &&
|
|
208
208
|
parser.currentAttributeName === attr) {
|
|
209
209
|
parser.step();
|
|
210
|
-
if (
|
|
210
|
+
if (isRelativePath(parser.currentAttributeValue)) {
|
|
211
211
|
data.pos = parser.pos;
|
|
212
212
|
return {
|
|
213
213
|
pos: parser.currentAttributeValueStart,
|
|
@@ -220,8 +220,14 @@ function checkAttribute(data, attr) {
|
|
|
220
220
|
parser.step();
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
|
-
function
|
|
224
|
-
|
|
223
|
+
function isRelativePath(link) {
|
|
224
|
+
// Lots of edge cases encoded right here!
|
|
225
|
+
// Originally, this attempted to match protocol://, but...
|
|
226
|
+
// `mailto:example@example.com` is not a relative path
|
|
227
|
+
// `C:\foo` is not a relative path
|
|
228
|
+
// `/etc/passwd` is not a relative path
|
|
229
|
+
// `#anchor` is not a relative path
|
|
230
|
+
return !/^[a-z]+:|^\/|^#/i.test(link);
|
|
225
231
|
}
|
|
226
232
|
function findLabelEnd(text, pos) {
|
|
227
233
|
while (pos < text.length) {
|
|
@@ -565,13 +565,11 @@ let CommentPlugin = (() => {
|
|
|
565
565
|
const isHidden = comment.hasModifier("@hidden") ||
|
|
566
566
|
comment.hasModifier("@ignore") ||
|
|
567
567
|
(comment.hasModifier("@internal") && this.excludeInternal);
|
|
568
|
-
if (isHidden &&
|
|
568
|
+
if (!isHidden &&
|
|
569
569
|
reflection.kindOf(models_1.ReflectionKind.ContainsCallSignatures)) {
|
|
570
570
|
return reflection
|
|
571
571
|
.getNonIndexSignatures()
|
|
572
|
-
.every((sig) =>
|
|
573
|
-
return !sig.comment || this.isHidden(sig);
|
|
574
|
-
});
|
|
572
|
+
.every((sig) => this.isHidden(sig));
|
|
575
573
|
}
|
|
576
574
|
return isHidden;
|
|
577
575
|
}
|
|
@@ -92,10 +92,12 @@ let LinkResolverPlugin = (() => {
|
|
|
92
92
|
type.elementSummaries = type.elementSummaries?.map((parts) => this.owner.resolveLinks(parts, reflection));
|
|
93
93
|
},
|
|
94
94
|
}));
|
|
95
|
+
if (reflection.readme) {
|
|
96
|
+
reflection.readme = this.owner.resolveLinks(reflection.readme, reflection);
|
|
97
|
+
}
|
|
95
98
|
}
|
|
96
|
-
if (reflection
|
|
97
|
-
reflection.
|
|
98
|
-
reflection.readme = this.owner.resolveLinks(reflection.readme, reflection);
|
|
99
|
+
if (reflection.isDocument()) {
|
|
100
|
+
reflection.content = this.owner.resolveLinks(reflection.content, reflection);
|
|
99
101
|
}
|
|
100
102
|
if (reflection instanceof models_1.ContainerReflection) {
|
|
101
103
|
if (reflection.groups) {
|
|
@@ -33,7 +33,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
33
33
|
comments_for_0_are_declared_at_1: "{0} のコメントは次の場所で宣言されています:\n{1}",
|
|
34
34
|
multiple_type_parameters_on_template_tag_unsupported: "TypeDoc は、コメント付きの単一の @template タグで定義された複数の型パラメータをサポートしていません。",
|
|
35
35
|
failed_to_find_jsdoc_tag_for_name_0: "コメントを解析した後、{0} の JSDoc タグが見つかりませんでした。バグレポートを提出してください。",
|
|
36
|
-
|
|
36
|
+
// relative_path_0_is_not_a_file_and_will_not_be_copied_to_output
|
|
37
37
|
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "インライン @inheritDoc タグはブロック タグ内に出現しないでください。{0} のコメントでは処理されません。",
|
|
38
38
|
at_most_one_remarks_tag_expected_in_comment_at_0: "コメントには最大 1 つの @remarks タグが必要です。{0} のコメントの最初のタグ以外はすべて無視されます。",
|
|
39
39
|
at_most_one_returns_tag_expected_in_comment_at_0: "コメントには最大 1 つの @returns タグが必要です。{0} のコメントの最初のタグ以外はすべて無視されます。",
|
|
@@ -93,7 +93,7 @@ module.exports = (0, translatable_1.buildIncompleteTranslation)({
|
|
|
93
93
|
entry_point_0_did_not_match_any_packages: "エントリ ポイント glob {0} は、package.json を含むディレクトリと一致しませんでした。",
|
|
94
94
|
file_0_not_an_object: "ファイル {0} はオブジェクトではありません",
|
|
95
95
|
serialized_project_referenced_0_not_part_of_project: "シリアル化されたプロジェクトは、プロジェクトの一部ではないリフレクション {0} を参照しました",
|
|
96
|
-
|
|
96
|
+
// saved_relative_path_0_resolved_from_1_is_not_a_file
|
|
97
97
|
circular_reference_extends_0: '{0} の "extends" フィールドで循環参照が検出されました',
|
|
98
98
|
failed_resolve_0_to_file_in_1: "{0} を {1} 内のファイルに解決できませんでした",
|
|
99
99
|
option_0_can_only_be_specified_by_config_file: "'{0}' オプションは設定ファイル経由でのみ指定できます",
|
|
@@ -1,321 +1,2 @@
|
|
|
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
|
-
docs_could_not_be_generated: string;
|
|
10
|
-
docs_generated_at_0: "{0} で生成されたドキュメント";
|
|
11
|
-
json_written_to_0: "JSON が {0} に書き込まれました";
|
|
12
|
-
no_entry_points_for_packages: string;
|
|
13
|
-
failed_to_find_packages: string;
|
|
14
|
-
nested_packages_unsupported_0: "{0} のプロジェクトでは entryPointStrategy がパッケージに設定されていますが、ネストされたパッケージはサポートされていません";
|
|
15
|
-
previous_error_occurred_when_reading_options_for_0: "前のエラーは、{0} のパッケージのオプションを読み取り中に発生しました";
|
|
16
|
-
converting_project_at_0: "{0} のプロジェクトを変換しています";
|
|
17
|
-
failed_to_convert_packages: string;
|
|
18
|
-
merging_converted_projects: string;
|
|
19
|
-
no_entry_points_to_merge: string;
|
|
20
|
-
entrypoint_did_not_match_files_0: "エントリポイント グロブ {0} はどのファイルにも一致しませんでした";
|
|
21
|
-
failed_to_parse_json_0: "{0} のファイルを json として解析できませんでした";
|
|
22
|
-
failed_to_read_0_when_processing_document_tag_in_1: "{1} のコメントの @document タグの処理中にファイル {0} の読み取りに失敗しました";
|
|
23
|
-
failed_to_read_0_when_processing_project_document: "プロジェクト ドキュメントの追加時にファイル {0} の読み取りに失敗しました";
|
|
24
|
-
failed_to_read_0_when_processing_document_child_in_1: "{1} 内のドキュメントの子を処理するときにファイル {0} の読み取りに失敗しました";
|
|
25
|
-
frontmatter_children_0_should_be_an_array_of_strings_or_object_with_string_values: "{0} の Frontmatter の子は、文字列の配列または文字列値を持つオブジェクトである必要があります。";
|
|
26
|
-
converting_union_as_interface: string;
|
|
27
|
-
converting_0_as_class_requires_value_declaration: "{0} をクラスとして変換するには、非型値を表す宣言が必要です";
|
|
28
|
-
converting_0_as_class_without_construct_signatures: "{0} はクラスとして変換されていますが、コンストラクト シグネチャがありません";
|
|
29
|
-
comment_for_0_should_not_contain_block_or_modifier_tags: "{0} のコメントにはブロックタグや修飾タグを含めることはできません";
|
|
30
|
-
symbol_0_has_multiple_declarations_with_comment: "{0} にはコメント付きの宣言が複数あります。任意のコメントが使用されます";
|
|
31
|
-
comments_for_0_are_declared_at_1: "{0} のコメントは次の場所で宣言されています:\n{1}";
|
|
32
|
-
multiple_type_parameters_on_template_tag_unsupported: string;
|
|
33
|
-
failed_to_find_jsdoc_tag_for_name_0: "コメントを解析した後、{0} の JSDoc タグが見つかりませんでした。バグレポートを提出してください。";
|
|
34
|
-
relative_path_0_does_not_exist: "相対パス {0} は存在しません";
|
|
35
|
-
inline_inheritdoc_should_not_appear_in_block_tag_in_comment_at_0: "インライン @inheritDoc タグはブロック タグ内に出現しないでください。{0} のコメントでは処理されません。";
|
|
36
|
-
at_most_one_remarks_tag_expected_in_comment_at_0: "コメントには最大 1 つの @remarks タグが必要です。{0} のコメントの最初のタグ以外はすべて無視されます。";
|
|
37
|
-
at_most_one_returns_tag_expected_in_comment_at_0: "コメントには最大 1 つの @returns タグが必要です。{0} のコメントの最初のタグ以外はすべて無視されます。";
|
|
38
|
-
at_most_one_inheritdoc_tag_expected_in_comment_at_0: "コメントには最大 1 つの @inheritDoc タグが必要です。{0} のコメントの最初のタグ以外はすべて無視されます。";
|
|
39
|
-
content_in_summary_overwritten_by_inheritdoc_in_comment_at_0: "概要セクションの内容は、{0} のコメントの @inheritDoc タグによって上書きされます。";
|
|
40
|
-
content_in_remarks_block_overwritten_by_inheritdoc_in_comment_at_0: "@remarks ブロックの内容は、{0} のコメントの @inheritDoc タグによって上書きされます。";
|
|
41
|
-
example_tag_literal_name: string;
|
|
42
|
-
inheritdoc_tag_properly_capitalized: string;
|
|
43
|
-
treating_unrecognized_tag_0_as_modifier: "認識されないタグ {0} を修飾タグとして処理します";
|
|
44
|
-
unmatched_closing_brace: string;
|
|
45
|
-
unescaped_open_brace_without_inline_tag: string;
|
|
46
|
-
unknown_block_tag_0: "不明なブロック タグ {0} に遭遇しました";
|
|
47
|
-
unknown_inline_tag_0: "不明なインライン タグ {0} に遭遇しました";
|
|
48
|
-
open_brace_within_inline_tag: string;
|
|
49
|
-
inline_tag_not_closed: string;
|
|
50
|
-
failed_to_resolve_link_to_0_in_comment_for_1: "{1} のコメント内の「{0}」へのリンクを解決できませんでした";
|
|
51
|
-
type_0_defined_in_1_is_referenced_by_2_but_not_included_in_docs: "{1} で定義されている {0} は {2} によって参照されていますが、ドキュメントには含まれていません。";
|
|
52
|
-
reflection_0_kind_1_defined_in_2_does_not_have_any_documentation: "{2} で定義されている {0} ({1}) にはドキュメントがありません";
|
|
53
|
-
invalid_intentionally_not_exported_symbols_0: "次のシンボルは意図的にエクスポートされないものとしてマークされていますが、ドキュメントで参照されていないか、エクスポートされています:\n{0}";
|
|
54
|
-
not_all_search_category_boosts_used_0: "searchCategoryBoosts で指定されたすべてのカテゴリがドキュメントで使用されているわけではありません。使用されていないカテゴリは次のとおりです:\n{0}";
|
|
55
|
-
not_all_search_group_boosts_used_0: "searchGroupBoosts で指定されたすべてのグループがドキュメントで使用されているわけではありません。使用されていないグループは次のとおりです:\n{0}";
|
|
56
|
-
comment_for_0_includes_categoryDescription_for_1_but_no_child_in_group: "{0} のコメントに「{1}」の @categoryDescription が含まれていますが、そのカテゴリに子が配置されていません";
|
|
57
|
-
comment_for_0_includes_groupDescription_for_1_but_no_child_in_group: "{0} のコメントに \"{1}\" の @groupDescription が含まれていますが、そのグループには子が配置されていません";
|
|
58
|
-
label_0_for_1_cannot_be_referenced: "{1} のラベル \"{0}\" は宣言参照では参照できません。ラベルには A ~ Z、0 ~ 9、_ のみを含めることができ、数字で始まることはできません。";
|
|
59
|
-
failed_to_resolve_link_to_0_in_comment_for_1_may_have_meant_2: "{1} のコメント内の \"{0}\" へのリンクを解決できません。\"{2}\" を意味していた可能性があります。";
|
|
60
|
-
failed_to_resolve_link_to_0_in_readme_for_1: "{1} の README ファイル内の \"{0}\" へのリンクを解決できません。";
|
|
61
|
-
failed_to_resolve_link_to_0_in_readme_for_1_may_have_meant_2: "{1} の README ファイル内の \"{0}\" へのリンクを解決できません。\"{2}\" を意味していた可能性があります。";
|
|
62
|
-
modifier_tag_0_is_mutually_exclusive_with_1_in_comment_for_2: "修飾子タグ {0} は、{2} のコメント内の {1} と相互に排他的です";
|
|
63
|
-
signature_0_has_unused_param_with_name_1: "署名 {0} には、名前が \"{1}\" の @param がありますが、使用されていません。";
|
|
64
|
-
declaration_reference_in_inheritdoc_for_0_not_fully_parsed: "{0} の @inheritDoc の宣言参照が完全に解析されていないため、正しく解決されない可能性があります";
|
|
65
|
-
failed_to_find_0_to_inherit_comment_from_in_1: "{1} のコメントからコメントを継承する「{0}」が見つかりませんでした";
|
|
66
|
-
reflection_0_tried_to_copy_comment_from_1_but_source_had_no_comment: "{0} は @inheritDoc を使用して {1} からコメントをコピーしようとしましたが、ソースには関連付けられたコメントがありません";
|
|
67
|
-
inheritdoc_circular_inheritance_chain_0: "@inheritDoc は循環継承チェーンを指定します: {0}";
|
|
68
|
-
provided_readme_at_0_could_not_be_read: "指定された README パス、{0} は読み取れませんでした";
|
|
69
|
-
defaulting_project_name: string;
|
|
70
|
-
disable_git_set_but_not_source_link_template: string;
|
|
71
|
-
disable_git_set_and_git_revision_used: string;
|
|
72
|
-
git_remote_0_not_valid: "提供された Git リモート \"{0}\" は無効です。ソース リンクは壊れます";
|
|
73
|
-
custom_css_file_0_does_not_exist: "{0} のカスタム CSS ファイルは存在しません";
|
|
74
|
-
unsupported_highlight_language_0_not_highlighted_in_comment_for_1: "サポートされていないハイライト言語 {0} は、{1} のコメントではハイライトされません。";
|
|
75
|
-
unloaded_language_0_not_highlighted_in_comment_for_1: "言語 {0} のコード ブロックは、highlightLanguages オプションに含まれていないため、{1} のコメントでは強調表示されません。";
|
|
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
|
-
custom_theme_does_not_define_getSlugger: string;
|
|
82
|
-
no_entry_points_provided: string;
|
|
83
|
-
unable_to_find_any_entry_points: string;
|
|
84
|
-
watch_does_not_support_packages_mode: string;
|
|
85
|
-
watch_does_not_support_merge_mode: string;
|
|
86
|
-
entry_point_0_not_in_program: "エントリ ポイント {0} は、tsconfig の 'files' または 'include' オプションによって参照されていません。";
|
|
87
|
-
use_expand_or_glob_for_files_in_dir: string;
|
|
88
|
-
glob_0_did_not_match_any_files: "グロブ {0} はどのファイルにも一致しませんでした";
|
|
89
|
-
entry_point_0_did_not_match_any_files_after_exclude: "除外パターンを適用した後、グロブ {0} はどのファイルにも一致しませんでした";
|
|
90
|
-
entry_point_0_did_not_exist: "指定されたエントリ ポイント {0} は存在しません";
|
|
91
|
-
entry_point_0_did_not_match_any_packages: "エントリ ポイント glob {0} は、package.json を含むディレクトリと一致しませんでした。";
|
|
92
|
-
file_0_not_an_object: "ファイル {0} はオブジェクトではありません";
|
|
93
|
-
serialized_project_referenced_0_not_part_of_project: "シリアル化されたプロジェクトは、プロジェクトの一部ではないリフレクション {0} を参照しました";
|
|
94
|
-
saved_relative_path_0_resolved_from_1_does_not_exist: "シリアル化されたプロジェクトは {0} を参照していますが、{1} に関連して存在しません";
|
|
95
|
-
circular_reference_extends_0: "{0} の \"extends\" フィールドで循環参照が検出されました";
|
|
96
|
-
failed_resolve_0_to_file_in_1: "{0} を {1} 内のファイルに解決できませんでした";
|
|
97
|
-
option_0_can_only_be_specified_by_config_file: "'{0}' オプションは設定ファイル経由でのみ指定できます";
|
|
98
|
-
option_0_expected_a_value_but_none_provided: "--{0} には値が期待されていましたが、引数として値が与えられませんでした";
|
|
99
|
-
unknown_option_0_may_have_meant_1: "不明なオプション: {0}。次のオプションを意味している可能性があります:\n{1}";
|
|
100
|
-
typedoc_key_in_0_ignored: "{0} の 'typedoc' キーは、レガシー パッケージの entryPointStrategy によって使用されており、無視されます。";
|
|
101
|
-
typedoc_options_must_be_object_in_0: "{0} の \"typedocOptions\" フィールドを解析できませんでした。フィールドが存在し、オブジェクトが含まれていることを確認してください。";
|
|
102
|
-
tsconfig_file_0_does_not_exist: "tsconfig ファイル {0} が存在しません";
|
|
103
|
-
tsconfig_file_specifies_options_file: string;
|
|
104
|
-
tsconfig_file_specifies_tsconfig_file: string;
|
|
105
|
-
tags_0_defined_in_typedoc_json_overwritten_by_tsdoc_json: "typedoc.json で定義された {0} は、tsdoc.json の設定によって上書きされます。";
|
|
106
|
-
failed_read_tsdoc_json_0: "{0} の tsdoc.json ファイルの読み取りに失敗しました";
|
|
107
|
-
invalid_tsdoc_json_0: "ファイル {0} は有効な tsdoc.json ファイルではありません";
|
|
108
|
-
options_file_0_does_not_exist: "オプションファイル {0} が存在しません";
|
|
109
|
-
failed_read_options_file_0: "{0} の解析に失敗しました。存在し、オブジェクトをエクスポートしていることを確認してください";
|
|
110
|
-
invalid_plugin_0_missing_load_function: "プラグイン {0} の構造が無効です。ロード関数が見つかりません";
|
|
111
|
-
plugin_0_could_not_be_loaded: "プラグイン {0} を読み込めませんでした";
|
|
112
|
-
help_options: string;
|
|
113
|
-
help_tsconfig: string;
|
|
114
|
-
help_compilerOptions: string;
|
|
115
|
-
help_lang: string;
|
|
116
|
-
help_locales: string;
|
|
117
|
-
help_packageOptions: string;
|
|
118
|
-
help_entryPoints: string;
|
|
119
|
-
help_entryPointStrategy: string;
|
|
120
|
-
help_alwaysCreateEntryPointModule: string;
|
|
121
|
-
help_projectDocuments: string;
|
|
122
|
-
help_exclude: string;
|
|
123
|
-
help_externalPattern: string;
|
|
124
|
-
help_excludeExternals: string;
|
|
125
|
-
help_excludeNotDocumented: string;
|
|
126
|
-
help_excludeNotDocumentedKinds: string;
|
|
127
|
-
help_excludeInternal: string;
|
|
128
|
-
help_excludeCategories: string;
|
|
129
|
-
help_excludePrivate: string;
|
|
130
|
-
help_excludeProtected: string;
|
|
131
|
-
help_excludeReferences: string;
|
|
132
|
-
help_externalSymbolLinkMappings: string;
|
|
133
|
-
help_out: string;
|
|
134
|
-
help_json: string;
|
|
135
|
-
help_pretty: string;
|
|
136
|
-
help_emit: string;
|
|
137
|
-
help_theme: string;
|
|
138
|
-
help_lightHighlightTheme: string;
|
|
139
|
-
help_darkHighlightTheme: string;
|
|
140
|
-
help_highlightLanguages: string;
|
|
141
|
-
help_customCss: 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_githubPages: string;
|
|
158
|
-
help_hostedBaseUrl: string;
|
|
159
|
-
help_useHostedBaseUrlForAbsoluteLinks: string;
|
|
160
|
-
help_hideGenerator: string;
|
|
161
|
-
help_customFooterHtml: string;
|
|
162
|
-
help_customFooterHtmlDisableWrapper: string;
|
|
163
|
-
help_hideParameterTypesInTitle: 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_visibilityFilters: string;
|
|
174
|
-
help_searchCategoryBoosts: string;
|
|
175
|
-
help_searchGroupBoosts: string;
|
|
176
|
-
help_jsDocCompatibility: string;
|
|
177
|
-
help_commentStyle: string;
|
|
178
|
-
help_useTsLinkResolution: string;
|
|
179
|
-
help_preserveLinkText: string;
|
|
180
|
-
help_blockTags: string;
|
|
181
|
-
help_inlineTags: string;
|
|
182
|
-
help_modifierTags: string;
|
|
183
|
-
help_categorizeByGroup: string;
|
|
184
|
-
help_defaultCategory: string;
|
|
185
|
-
help_categoryOrder: string;
|
|
186
|
-
help_groupOrder: string;
|
|
187
|
-
help_sort: string;
|
|
188
|
-
help_sortEntryPoints: string;
|
|
189
|
-
help_kindSortOrder: string;
|
|
190
|
-
help_watch: string;
|
|
191
|
-
help_preserveWatchOutput: string;
|
|
192
|
-
help_skipErrorChecking: string;
|
|
193
|
-
help_help: string;
|
|
194
|
-
help_version: string;
|
|
195
|
-
help_showConfig: string;
|
|
196
|
-
help_plugin: string;
|
|
197
|
-
help_logLevel: string;
|
|
198
|
-
help_treatWarningsAsErrors: string;
|
|
199
|
-
help_treatValidationWarningsAsErrors: string;
|
|
200
|
-
help_intentionallyNotExported: string;
|
|
201
|
-
help_requiredToBeDocumented: string;
|
|
202
|
-
help_validation: string;
|
|
203
|
-
unknown_option_0_you_may_have_meant_1: "不明なオプション '{0}' 次のオプションを意味している可能性があります:\n{1}";
|
|
204
|
-
option_0_must_be_between_1_and_2: "{0} は {1} と {2} の間でなければなりません";
|
|
205
|
-
option_0_must_be_equal_to_or_greater_than_1: "{0} は {1} 以上である必要があります";
|
|
206
|
-
option_0_must_be_less_than_or_equal_to_1: "{0} は {1} 以下である必要があります";
|
|
207
|
-
option_0_must_be_one_of_1: "{0} は {1} のいずれかである必要があります";
|
|
208
|
-
flag_0_is_not_valid_for_1_expected_2: "フラグ '{0}' は {1} に対して有効ではありません。{2} のいずれかである必要があります。";
|
|
209
|
-
expected_object_with_flag_values_for_0: "{0} または true/false のフラグ値を持つオブジェクトが必要です";
|
|
210
|
-
flag_values_for_0_must_be_booleans: "{0} のフラグ値はブール値である必要があります";
|
|
211
|
-
locales_must_be_an_object: string;
|
|
212
|
-
exclude_not_documented_specified_0_valid_values_are_1: "excludeNotDocumentedKinds は既知の値のみを指定できますが、無効な値が指定されました ({0})。有効な種類は次のとおりです:\n{1}";
|
|
213
|
-
external_symbol_link_mappings_must_be_object: string;
|
|
214
|
-
highlight_theme_0_must_be_one_of_1: "{0} は次のいずれかである必要があります: {1}";
|
|
215
|
-
highlightLanguages_contains_invalid_languages_0: "highlightLanguages に無効な言語が含まれています: {0}。サポートされている言語のリストについては typedoc --help を実行してください";
|
|
216
|
-
hostedBaseUrl_must_start_with_http: string;
|
|
217
|
-
useHostedBaseUrlForAbsoluteLinks_requires_hostedBaseUrl: string;
|
|
218
|
-
option_0_must_be_an_object: "'{0}' オプションは配列以外のオブジェクトである必要があります";
|
|
219
|
-
option_0_must_be_a_function: "'{0}' オプションは関数である必要があります";
|
|
220
|
-
option_0_must_be_object_with_urls: "{0} は、キーとして文字列ラベル、URL 値として文字列ラベルを持つオブジェクトである必要があります。";
|
|
221
|
-
visibility_filters_only_include_0: "visibilityFilters には、次の非 @ キーのみを含めることができます: {0}";
|
|
222
|
-
visibility_filters_must_be_booleans: string;
|
|
223
|
-
option_0_values_must_be_numbers: "{0} のすべての値は数値である必要があります";
|
|
224
|
-
option_0_values_must_be_array_of_tags: "{0} は有効なタグ名の配列である必要があります";
|
|
225
|
-
option_0_specified_1_but_only_2_is_valid: "{0} は既知の値のみを指定できますが、無効な値が指定されました ({1})。有効な並べ替え戦略は次のとおりです:\n{2}";
|
|
226
|
-
kind_project: string;
|
|
227
|
-
kind_module: string;
|
|
228
|
-
kind_namespace: string;
|
|
229
|
-
kind_enum: string;
|
|
230
|
-
kind_enum_member: string;
|
|
231
|
-
kind_variable: string;
|
|
232
|
-
kind_function: string;
|
|
233
|
-
kind_class: string;
|
|
234
|
-
kind_interface: string;
|
|
235
|
-
kind_constructor: string;
|
|
236
|
-
kind_property: string;
|
|
237
|
-
kind_method: string;
|
|
238
|
-
kind_call_signature: string;
|
|
239
|
-
kind_index_signature: string;
|
|
240
|
-
kind_constructor_signature: string;
|
|
241
|
-
kind_parameter: string;
|
|
242
|
-
kind_type_literal: string;
|
|
243
|
-
kind_type_parameter: string;
|
|
244
|
-
kind_accessor: string;
|
|
245
|
-
kind_get_signature: string;
|
|
246
|
-
kind_set_signature: string;
|
|
247
|
-
kind_type_alias: string;
|
|
248
|
-
kind_reference: string;
|
|
249
|
-
kind_document: string;
|
|
250
|
-
kind_plural_project: string;
|
|
251
|
-
kind_plural_module: string;
|
|
252
|
-
kind_plural_namespace: string;
|
|
253
|
-
kind_plural_enum: string;
|
|
254
|
-
kind_plural_enum_member: string;
|
|
255
|
-
kind_plural_variable: string;
|
|
256
|
-
kind_plural_function: string;
|
|
257
|
-
kind_plural_class: string;
|
|
258
|
-
kind_plural_interface: string;
|
|
259
|
-
kind_plural_constructor: string;
|
|
260
|
-
kind_plural_property: string;
|
|
261
|
-
kind_plural_method: string;
|
|
262
|
-
kind_plural_call_signature: string;
|
|
263
|
-
kind_plural_index_signature: string;
|
|
264
|
-
kind_plural_constructor_signature: string;
|
|
265
|
-
kind_plural_parameter: string;
|
|
266
|
-
kind_plural_type_literal: string;
|
|
267
|
-
kind_plural_type_parameter: string;
|
|
268
|
-
kind_plural_accessor: string;
|
|
269
|
-
kind_plural_get_signature: string;
|
|
270
|
-
kind_plural_set_signature: string;
|
|
271
|
-
kind_plural_type_alias: string;
|
|
272
|
-
kind_plural_reference: string;
|
|
273
|
-
kind_plural_document: string;
|
|
274
|
-
flag_protected: string;
|
|
275
|
-
flag_private: string;
|
|
276
|
-
flag_external: string;
|
|
277
|
-
flag_inherited: string;
|
|
278
|
-
flag_public: string;
|
|
279
|
-
flag_static: string;
|
|
280
|
-
flag_optional: string;
|
|
281
|
-
flag_rest: string;
|
|
282
|
-
flag_abstract: string;
|
|
283
|
-
flag_const: string;
|
|
284
|
-
flag_readonly: string;
|
|
285
|
-
theme_implements: string;
|
|
286
|
-
theme_indexable: string;
|
|
287
|
-
theme_type_declaration: string;
|
|
288
|
-
theme_index: string;
|
|
289
|
-
theme_hierarchy: string;
|
|
290
|
-
theme_hierarchy_view_full: string;
|
|
291
|
-
theme_implemented_by: string;
|
|
292
|
-
theme_defined_in: string;
|
|
293
|
-
theme_implementation_of: string;
|
|
294
|
-
theme_inherited_from: string;
|
|
295
|
-
theme_overrides: string;
|
|
296
|
-
theme_returns: string;
|
|
297
|
-
theme_re_exports: string;
|
|
298
|
-
theme_renames_and_re_exports: string;
|
|
299
|
-
theme_generated_using_typedoc: string;
|
|
300
|
-
theme_preparing_search_index: string;
|
|
301
|
-
theme_search_index_not_available: string;
|
|
302
|
-
theme_settings: string;
|
|
303
|
-
theme_member_visibility: string;
|
|
304
|
-
theme_theme: string;
|
|
305
|
-
theme_os: string;
|
|
306
|
-
theme_light: string;
|
|
307
|
-
theme_dark: string;
|
|
308
|
-
theme_on_this_page: string;
|
|
309
|
-
theme_search: string;
|
|
310
|
-
theme_menu: string;
|
|
311
|
-
theme_permalink: string;
|
|
312
|
-
tag_see: string;
|
|
313
|
-
tag_group: string;
|
|
314
|
-
tag_example: string;
|
|
315
|
-
theme_copy: string;
|
|
316
|
-
theme_copied: string;
|
|
317
|
-
theme_normally_hidden: string;
|
|
318
|
-
theme_class_hierarchy_title: string;
|
|
319
|
-
theme_loading: string;
|
|
320
|
-
};
|
|
1
|
+
declare const _default: Partial<import("../translatable").BuiltinTranslatableStringConstraints>;
|
|
321
2
|
export = _default;
|