gitextract_ygk5af18/ ├── .config/ │ ├── mocha.fast.json │ ├── mocha.full.json │ ├── mocha.test-explorer.json │ ├── regconfig.json │ └── typedoc.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── SECURITY.md │ └── workflows/ │ ├── build-site.yml │ ├── ci.yml │ ├── publish-beta.yml │ ├── publish-lts.yml │ └── publish.yml ├── .gitignore ├── .npmrc ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin/ │ ├── package.json │ └── typedoc ├── dprint.json ├── eslint.config.mjs ├── example/ │ ├── .eslintrc.json │ ├── README.md │ ├── building-the-example.md │ ├── package.json │ ├── src/ │ │ ├── classes/ │ │ │ ├── CancellablePromise.ts │ │ │ ├── Customer.ts │ │ │ ├── StringArray.ts │ │ │ └── index.ts │ │ ├── documents/ │ │ │ ├── external-markdown.md │ │ │ ├── include-code.md │ │ │ ├── include.md │ │ │ ├── markdown.md │ │ │ └── syntax-highlighting.md │ │ ├── enums.ts │ │ ├── functions.ts │ │ ├── index.ts │ │ ├── internals.ts │ │ ├── reactComponents.tsx │ │ ├── reexports.ts │ │ ├── types.ts │ │ └── variables.ts │ ├── tsconfig.json │ └── typedoc.json ├── package.json ├── scripts/ │ ├── build_browser_translations.js │ ├── build_site.sh │ ├── build_themes.js │ ├── capture_screenshots.mjs │ ├── clone_api_users.js │ ├── create_release.js │ ├── data/ │ │ └── api_users.js │ ├── download_plugins.cjs │ ├── generate_options_schema.js │ ├── generate_site_plugins.js │ ├── prepare.mjs │ ├── rebuild_specs.js │ ├── set_strict.js │ ├── sync_i18n.js │ ├── testcase.js │ └── visual_regression.js ├── site/ │ ├── custom.css │ ├── declaration-references.md │ ├── development/ │ │ ├── index.md │ │ ├── internationalization.md │ │ ├── local-storage.md │ │ ├── plugins.md │ │ ├── themes.md │ │ └── third-party-symbols.md │ ├── doc-comments/ │ │ ├── index.md │ │ ├── jsdoc-support.md │ │ └── tsdoc-support.md │ ├── external-documents.md │ ├── generated/ │ │ └── .gitignore │ ├── googlede482cdb17c37ad4.html │ ├── index.md │ ├── options/ │ │ ├── comments.md │ │ ├── configuration.md │ │ ├── input.md │ │ ├── organization.md │ │ ├── other.md │ │ ├── output.md │ │ ├── package-options.md │ │ └── validation.md │ ├── options.md │ ├── overview.md │ ├── plugins.md │ ├── site-plugin.js │ ├── tags/ │ │ ├── abstract.md │ │ ├── alpha.md │ │ ├── author.md │ │ ├── beta.md │ │ ├── category.md │ │ ├── class.md │ │ ├── defaultValue.md │ │ ├── deprecated.md │ │ ├── document.md │ │ ├── enum.md │ │ ├── event.md │ │ ├── eventProperty.md │ │ ├── example.md │ │ ├── expand.md │ │ ├── experimental.md │ │ ├── function.md │ │ ├── group.md │ │ ├── hidden.md │ │ ├── hideconstructor.md │ │ ├── ignore.md │ │ ├── import.md │ │ ├── include.md │ │ ├── inheritDoc.md │ │ ├── inline.md │ │ ├── interface.md │ │ ├── internal.md │ │ ├── label.md │ │ ├── license.md │ │ ├── link.md │ │ ├── mergeModuleWith.md │ │ ├── module.md │ │ ├── namespace.md │ │ ├── overload.md │ │ ├── override.md │ │ ├── packageDocumentation.md │ │ ├── param.md │ │ ├── primaryExport.md │ │ ├── private.md │ │ ├── privateRemarks.md │ │ ├── property.md │ │ ├── protected.md │ │ ├── public.md │ │ ├── readonly.md │ │ ├── remarks.md │ │ ├── returns.md │ │ ├── sealed.md │ │ ├── see.md │ │ ├── since.md │ │ ├── sortStrategy.md │ │ ├── summary.md │ │ ├── template.md │ │ ├── throws.md │ │ ├── typeParam.md │ │ ├── typescript.md │ │ ├── useDeclaredType.md │ │ └── virtual.md │ ├── tags.md │ ├── themes.md │ ├── typedoc-plugin-redirect.js │ └── typedoc.config.jsonc ├── src/ │ ├── browser-utils.ts │ ├── index.ts │ ├── lib/ │ │ ├── application-events.ts │ │ ├── application.ts │ │ ├── cli.ts │ │ ├── converter/ │ │ │ ├── comments/ │ │ │ │ ├── blockLexer.ts │ │ │ │ ├── declarationReferenceResolver.ts │ │ │ │ ├── discovery.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lexer.ts │ │ │ │ ├── lineLexer.ts │ │ │ │ ├── linkResolver.ts │ │ │ │ ├── parser.ts │ │ │ │ ├── rawLexer.ts │ │ │ │ ├── tagName.ts │ │ │ │ └── textParser.ts │ │ │ ├── components.ts │ │ │ ├── context.ts │ │ │ ├── convert-expression.ts │ │ │ ├── converter-events.ts │ │ │ ├── converter.ts │ │ │ ├── factories/ │ │ │ │ ├── index-signature.ts │ │ │ │ ├── signature.ts │ │ │ │ └── symbol-id.ts │ │ │ ├── index.ts │ │ │ ├── jsdoc.ts │ │ │ ├── plugins/ │ │ │ │ ├── CategoryPlugin.ts │ │ │ │ ├── CommentPlugin.ts │ │ │ │ ├── GroupPlugin.ts │ │ │ │ ├── ImplementsPlugin.ts │ │ │ │ ├── IncludePlugin.ts │ │ │ │ ├── InheritDocPlugin.ts │ │ │ │ ├── LinkResolverPlugin.ts │ │ │ │ ├── MergeModuleWithPlugin.ts │ │ │ │ ├── PackagePlugin.ts │ │ │ │ ├── SourcePlugin.ts │ │ │ │ ├── TypePlugin.ts │ │ │ │ └── index.ts │ │ │ ├── symbols.ts │ │ │ ├── types.ts │ │ │ └── utils/ │ │ │ ├── nodes.ts │ │ │ ├── reflections.ts │ │ │ ├── repository.ts │ │ │ └── symbols.ts │ │ ├── debug/ │ │ │ ├── index.ts │ │ │ ├── reflectionLifetimes.ts │ │ │ └── rendererUrls.ts │ │ ├── internationalization/ │ │ │ ├── index.ts │ │ │ ├── internationalization.ts │ │ │ ├── locale-utils.cts │ │ │ ├── locales/ │ │ │ │ ├── de.cts │ │ │ │ ├── en.cts │ │ │ │ ├── ja.cts │ │ │ │ ├── ko.cts │ │ │ │ └── zh.cts │ │ │ └── translatable.ts │ │ ├── models/ │ │ │ ├── Comment.ts │ │ │ ├── ContainerReflection.ts │ │ │ ├── DeclarationReflection.ts │ │ │ ├── DocumentReflection.ts │ │ │ ├── FileRegistry.ts │ │ │ ├── ParameterReflection.ts │ │ │ ├── ProjectReflection.ts │ │ │ ├── ReferenceReflection.ts │ │ │ ├── Reflection.ts │ │ │ ├── ReflectionCategory.ts │ │ │ ├── ReflectionGroup.ts │ │ │ ├── ReflectionSymbolId.ts │ │ │ ├── SignatureReflection.ts │ │ │ ├── SourceReference.ts │ │ │ ├── TypeParameterReflection.ts │ │ │ ├── index.ts │ │ │ ├── kind.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── variant.ts │ │ ├── output/ │ │ │ ├── components.ts │ │ │ ├── events.ts │ │ │ ├── formatter.tsx │ │ │ ├── index.ts │ │ │ ├── output.ts │ │ │ ├── plugins/ │ │ │ │ ├── AssetsPlugin.ts │ │ │ │ ├── HierarchyPlugin.ts │ │ │ │ ├── IconsPlugin.tsx │ │ │ │ ├── JavascriptIndexPlugin.ts │ │ │ │ ├── NavigationPlugin.ts │ │ │ │ ├── SitemapPlugin.ts │ │ │ │ └── index.ts │ │ │ ├── renderer.ts │ │ │ ├── router.ts │ │ │ ├── theme.ts │ │ │ └── themes/ │ │ │ ├── MarkedPlugin.tsx │ │ │ ├── default/ │ │ │ │ ├── DefaultTheme.tsx │ │ │ │ ├── DefaultThemeRenderContext.ts │ │ │ │ ├── Slugger.ts │ │ │ │ ├── assets/ │ │ │ │ │ ├── bootstrap.ts │ │ │ │ │ └── typedoc/ │ │ │ │ │ ├── Application.ts │ │ │ │ │ ├── Component.ts │ │ │ │ │ ├── EventTarget.ts │ │ │ │ │ ├── Hierarchy.ts │ │ │ │ │ ├── Navigation.ts │ │ │ │ │ ├── Theme.ts │ │ │ │ │ ├── components/ │ │ │ │ │ │ ├── Accordion.ts │ │ │ │ │ │ ├── Filter.ts │ │ │ │ │ │ ├── Search.ts │ │ │ │ │ │ └── Toggle.ts │ │ │ │ │ └── utils/ │ │ │ │ │ ├── debounce.ts │ │ │ │ │ ├── decompress.ts │ │ │ │ │ ├── modal.ts │ │ │ │ │ ├── pointer.ts │ │ │ │ │ ├── storage.ts │ │ │ │ │ └── throttle.ts │ │ │ │ ├── layouts/ │ │ │ │ │ └── default.tsx │ │ │ │ ├── partials/ │ │ │ │ │ ├── anchor-icon.tsx │ │ │ │ │ ├── breadcrumb.tsx │ │ │ │ │ ├── comment.tsx │ │ │ │ │ ├── footer.tsx │ │ │ │ │ ├── header.tsx │ │ │ │ │ ├── hierarchy.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── member.declaration.tsx │ │ │ │ │ ├── member.getterSetter.tsx │ │ │ │ │ ├── member.signature.body.tsx │ │ │ │ │ ├── member.signature.title.tsx │ │ │ │ │ ├── member.signatures.tsx │ │ │ │ │ ├── member.sources.tsx │ │ │ │ │ ├── member.tsx │ │ │ │ │ ├── members.tsx │ │ │ │ │ ├── moduleReflection.tsx │ │ │ │ │ ├── navigation.tsx │ │ │ │ │ ├── reflectionPreview.tsx │ │ │ │ │ ├── toolbar.tsx │ │ │ │ │ ├── type.tsx │ │ │ │ │ ├── typeAndParent.tsx │ │ │ │ │ ├── typeDetails.tsx │ │ │ │ │ └── typeParameters.tsx │ │ │ │ └── templates/ │ │ │ │ ├── document.tsx │ │ │ │ ├── hierarchy.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── reflection.tsx │ │ │ └── lib.tsx │ │ ├── serialization/ │ │ │ ├── components.ts │ │ │ ├── deserializer.ts │ │ │ ├── events.ts │ │ │ ├── index.ts │ │ │ ├── schema.ts │ │ │ └── serializer.ts │ │ ├── types/ │ │ │ ├── shiki/ │ │ │ │ └── shiki.d.ts │ │ │ └── ts-internal/ │ │ │ └── index.d.ts │ │ ├── utils/ │ │ │ ├── ValidatingFileRegistry.ts │ │ │ ├── component.ts │ │ │ ├── compress.ts │ │ │ ├── declaration-maps.ts │ │ │ ├── entry-point.ts │ │ │ ├── fs.ts │ │ │ ├── general.ts │ │ │ ├── highlighter.tsx │ │ │ ├── html-entities.ts │ │ │ ├── html.ts │ │ │ ├── index.ts │ │ │ ├── loggers.ts │ │ │ ├── options/ │ │ │ │ ├── declaration.ts │ │ │ │ ├── defaults.ts │ │ │ │ ├── help.ts │ │ │ │ ├── index.ts │ │ │ │ ├── options.ts │ │ │ │ ├── readers/ │ │ │ │ │ ├── arguments.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── package-json.ts │ │ │ │ │ ├── tsconfig.ts │ │ │ │ │ └── typedoc.ts │ │ │ │ ├── sources/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── typedoc.ts │ │ │ │ └── tsdoc-defaults.ts │ │ │ ├── package-manifest.ts │ │ │ ├── paths.ts │ │ │ ├── perf.ts │ │ │ ├── plugins.ts │ │ │ ├── reflections.ts │ │ │ ├── sort.ts │ │ │ ├── tsconfig.ts │ │ │ └── tsutils.ts │ │ ├── utils-common/ │ │ │ ├── array.ts │ │ │ ├── declarationReference.ts │ │ │ ├── enum.ts │ │ │ ├── events.ts │ │ │ ├── general.ts │ │ │ ├── hooks.ts │ │ │ ├── i18n.ts │ │ │ ├── index.ts │ │ │ ├── jsx.elements.ts │ │ │ ├── jsx.ts │ │ │ ├── logger.ts │ │ │ ├── map.ts │ │ │ ├── minimalSourceFile.ts │ │ │ ├── path.ts │ │ │ ├── set.ts │ │ │ ├── string.ts │ │ │ └── validation.ts │ │ └── validation/ │ │ ├── documentation.ts │ │ ├── exports.ts │ │ ├── links.ts │ │ └── unusedMergeModuleWith.ts │ └── test/ │ ├── Repository.test.ts │ ├── TestLogger.ts │ ├── behavior.c2.test.ts │ ├── comments.test.ts │ ├── converter/ │ │ ├── alias/ │ │ │ ├── alias.ts │ │ │ └── specs.json │ │ ├── class/ │ │ │ ├── access.ts │ │ │ ├── class.ts │ │ │ ├── constructor-properties.ts │ │ │ ├── decorators.ts │ │ │ ├── events-overloads.ts │ │ │ ├── events.ts │ │ │ ├── generic-class.ts │ │ │ ├── getter-setter.ts │ │ │ ├── specs-with-lump-categories.json │ │ │ ├── specs.json │ │ │ └── type-operator.ts │ │ ├── comment/ │ │ │ ├── comment.ts │ │ │ ├── comment2.ts │ │ │ ├── comment3.ts │ │ │ ├── comment4.ts │ │ │ ├── document.md │ │ │ └── specs.json │ │ ├── declaration/ │ │ │ ├── declaration.d.ts │ │ │ ├── export-declaration.d.ts │ │ │ ├── external.d.ts │ │ │ └── specs.json │ │ ├── enum/ │ │ │ ├── enum.ts │ │ │ ├── specs.json │ │ │ └── specs.nodoc.json │ │ ├── exports/ │ │ │ ├── export-assignment.ts │ │ │ ├── export-default.ts │ │ │ ├── export-with-local.ts │ │ │ ├── export.ts │ │ │ ├── mod.ts │ │ │ ├── no-doc-members.ts │ │ │ ├── specs.json │ │ │ ├── specs.nodoc.json │ │ │ └── test.json │ │ ├── function/ │ │ │ ├── function.ts │ │ │ ├── generic-function.ts │ │ │ ├── implicit-types.ts │ │ │ └── specs.json │ │ ├── inherit-param-doc/ │ │ │ ├── inherit-param-doc.ts │ │ │ └── specs.json │ │ ├── inheritance/ │ │ │ ├── inherit-doc.ts │ │ │ ├── mergable-class.ts │ │ │ └── specs.json │ │ ├── interface/ │ │ │ ├── constructor-type.ts │ │ │ ├── index-signature.ts │ │ │ ├── interface-empty.ts │ │ │ ├── interface-implementation.ts │ │ │ ├── merging.ts │ │ │ └── specs.json │ │ ├── js/ │ │ │ ├── export-eq-type.js │ │ │ ├── index.js │ │ │ └── specs.json │ │ ├── mixin/ │ │ │ ├── mixin.ts │ │ │ └── specs.json │ │ ├── react/ │ │ │ ├── react.tsx │ │ │ └── specs.json │ │ ├── tsconfig.json │ │ ├── types/ │ │ │ ├── general.ts │ │ │ ├── index-signature.ts │ │ │ ├── mapped.ts │ │ │ ├── parens.ts │ │ │ ├── query.ts │ │ │ ├── specs.json │ │ │ ├── tuple.ts │ │ │ ├── type-operator.ts │ │ │ └── union-or-intersection.ts │ │ └── variables/ │ │ ├── array.ts │ │ ├── destructuring.ts │ │ ├── literal.ts │ │ ├── specs.json │ │ ├── specs.nodoc.json │ │ └── variable.ts │ ├── converter.test.ts │ ├── converter2/ │ │ ├── behavior/ │ │ │ ├── asConstEnum.ts │ │ │ ├── benchmark.ts │ │ │ ├── blockComment.ts │ │ │ ├── cascadedModifiers.ts │ │ │ ├── categoryInheritance.ts │ │ │ ├── classTag.ts │ │ │ ├── constNamespace.ts │ │ │ ├── constTypeParam.ts │ │ │ ├── ctorTypeParam.ts │ │ │ ├── declareGlobal.ts │ │ │ ├── defaultTag.ts │ │ │ ├── defaultValueTag.ts │ │ │ ├── destructuredParamRenames.ts │ │ │ ├── documents/ │ │ │ │ ├── doc.md │ │ │ │ ├── docs.ts │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── duplicateHeritageClauses.ts │ │ │ ├── exampleTags.ts │ │ │ ├── excludeCategories.ts │ │ │ ├── excludeNotDocumentedKinds.ts │ │ │ ├── exportComments.ts │ │ │ ├── externalSymbols.ts │ │ │ ├── groupInheritance.ts │ │ │ ├── groupTag.ts │ │ │ ├── hiddenAccessor.ts │ │ │ ├── hideconstructor.ts │ │ │ ├── hierarchy.ts │ │ │ ├── highlightedProperties.ts │ │ │ ├── includeTag/ │ │ │ │ ├── circularInclude.ts │ │ │ │ ├── duplicateRegion.ts │ │ │ │ ├── emptyRegion.ts │ │ │ │ ├── foldAndRegion.java │ │ │ │ ├── includeInDoc.md │ │ │ │ ├── includeTag.md │ │ │ │ ├── includeTag.ts │ │ │ │ ├── includeTagDedent.ts │ │ │ │ ├── includeTagMultipleRegions.ts │ │ │ │ ├── invalid.extension │ │ │ │ ├── invalidInclude.ts │ │ │ │ ├── invalidLineRanges.ts │ │ │ │ ├── missingRegion.ts │ │ │ │ └── unsupportedExtension.ts │ │ │ ├── inferredPredicates.ts │ │ │ ├── inheritDocBasic.ts │ │ │ ├── inheritDocJsdoc.ts │ │ │ ├── inheritDocRecursive.ts │ │ │ ├── inheritDocSignature.ts │ │ │ ├── inheritDocWarnings.ts │ │ │ ├── inlineTag.ts │ │ │ ├── instantiationExpressions.ts │ │ │ ├── lineComment.ts │ │ │ ├── linkResolution.ts │ │ │ ├── linkResolutionErrors.ts │ │ │ ├── linkResolutionTs.ts │ │ │ ├── mergedDeclarations.ts │ │ │ ├── namedTupleMembers.ts │ │ │ ├── noInfer.ts │ │ │ ├── overloadTags.js │ │ │ ├── overloads.ts │ │ │ ├── readonlyTag.ts │ │ │ ├── refusingToRecurse.ts │ │ │ ├── removeReflection.ts │ │ │ ├── resolutionMode.ts │ │ │ ├── router.ts │ │ │ ├── seeTags.ts │ │ │ ├── sortStrategyTag.ts │ │ │ ├── thisType.ts │ │ │ ├── typeAliasInterface.ts │ │ │ └── useDeclaredTypeTag.ts │ │ ├── issues/ │ │ │ ├── gh1124.d.ts │ │ │ ├── gh1150.ts │ │ │ ├── gh1164.ts │ │ │ ├── gh1215.d.ts │ │ │ ├── gh1255.js │ │ │ ├── gh1261.ts │ │ │ ├── gh1330.ts │ │ │ ├── gh1366.d.ts │ │ │ ├── gh1408.ts │ │ │ ├── gh1436.d.ts │ │ │ ├── gh1449.ts │ │ │ ├── gh1454.ts │ │ │ ├── gh1462.ts │ │ │ ├── gh1481.js │ │ │ ├── gh1483.js │ │ │ ├── gh1490.ts │ │ │ ├── gh1509.ts │ │ │ ├── gh1514.ts │ │ │ ├── gh1522.ts │ │ │ ├── gh1524.d.ts │ │ │ ├── gh1534.ts │ │ │ ├── gh1547.ts │ │ │ ├── gh1552.ts │ │ │ ├── gh1578/ │ │ │ │ ├── ignored.ts │ │ │ │ └── index.ts │ │ │ ├── gh1580.ts │ │ │ ├── gh1624.ts │ │ │ ├── gh1626.ts │ │ │ ├── gh1651.ts │ │ │ ├── gh1660.ts │ │ │ ├── gh1733.ts │ │ │ ├── gh1734.ts │ │ │ ├── gh1745.ts │ │ │ ├── gh1770.ts │ │ │ ├── gh1771.ts │ │ │ ├── gh1795.ts │ │ │ ├── gh1804.js │ │ │ ├── gh1875.ts │ │ │ ├── gh1876.ts │ │ │ ├── gh1880.d.ts │ │ │ ├── gh1896.js │ │ │ ├── gh1898.ts │ │ │ ├── gh1903.ts │ │ │ ├── gh1903b.ts │ │ │ ├── gh1907/ │ │ │ │ ├── index.ts │ │ │ │ └── package.json │ │ │ ├── gh1913.js │ │ │ ├── gh1927.ts │ │ │ ├── gh1942.ts │ │ │ ├── gh1961.ts │ │ │ ├── gh1962.ts │ │ │ ├── gh1963.ts │ │ │ ├── gh1967.ts │ │ │ ├── gh1968.ts │ │ │ ├── gh1973/ │ │ │ │ ├── a.ts │ │ │ │ ├── b.ts │ │ │ │ └── index.ts │ │ │ ├── gh1980.ts │ │ │ ├── gh1986.ts │ │ │ ├── gh1994.ts │ │ │ ├── gh1996.ts │ │ │ ├── gh2008.ts │ │ │ ├── gh2011.ts │ │ │ ├── gh2012.ts │ │ │ ├── gh2019.ts │ │ │ ├── gh2020.js │ │ │ ├── gh2031.ts │ │ │ ├── gh2033.ts │ │ │ ├── gh2036.ts │ │ │ ├── gh2042.ts │ │ │ ├── gh2044/ │ │ │ │ ├── index.js │ │ │ │ └── other.js │ │ │ ├── gh2064.ts │ │ │ ├── gh2079.ts │ │ │ ├── gh2087.ts │ │ │ ├── gh2106.ts │ │ │ ├── gh2135.ts │ │ │ ├── gh2150/ │ │ │ │ ├── index.ts │ │ │ │ └── int.ts │ │ │ ├── gh2156.ts │ │ │ ├── gh2165.ts │ │ │ ├── gh2175.ts │ │ │ ├── gh2200.ts │ │ │ ├── gh2207/ │ │ │ │ ├── index.ts │ │ │ │ └── mod.ts │ │ │ ├── gh2220.ts │ │ │ ├── gh2222.ts │ │ │ ├── gh2233.ts │ │ │ ├── gh2234.ts │ │ │ ├── gh2270.ts │ │ │ ├── gh2290.ts │ │ │ ├── gh2291.ts │ │ │ ├── gh2296.ts │ │ │ ├── gh2307.ts │ │ │ ├── gh2320.ts │ │ │ ├── gh2336.ts │ │ │ ├── gh2360.ts │ │ │ ├── gh2364.ts │ │ │ ├── gh2372.ts │ │ │ ├── gh2384.js │ │ │ ├── gh2389.js │ │ │ ├── gh2401.d.ts │ │ │ ├── gh2414.ts │ │ │ ├── gh2430.js │ │ │ ├── gh2436.ts │ │ │ ├── gh2437.ts │ │ │ ├── gh2438.d.ts │ │ │ ├── gh2444.ts │ │ │ ├── gh2451.ts │ │ │ ├── gh2466.ts │ │ │ ├── gh2476.ts │ │ │ ├── gh2478.ts │ │ │ ├── gh2495.ts │ │ │ ├── gh2496.ts │ │ │ ├── gh2502.ts │ │ │ ├── gh2507.ts │ │ │ ├── gh2508.ts │ │ │ ├── gh2509.ts │ │ │ ├── gh2521.d.ts │ │ │ ├── gh2524.ts │ │ │ ├── gh2545.ts │ │ │ ├── gh2552.js │ │ │ ├── gh2553.ts │ │ │ ├── gh2555.ts │ │ │ ├── gh2574/ │ │ │ │ ├── default.ts │ │ │ │ ├── index.ts │ │ │ │ ├── notDefault.ts │ │ │ │ └── reexported.ts │ │ │ ├── gh2582.ts │ │ │ ├── gh2585.ts │ │ │ ├── gh2587.ts │ │ │ ├── gh2603.ts │ │ │ ├── gh2611.d.ts │ │ │ ├── gh2614.ts │ │ │ ├── gh2631/ │ │ │ │ ├── crlf.md │ │ │ │ └── index.ts │ │ │ ├── gh2634.ts │ │ │ ├── gh2636.ts │ │ │ ├── gh2638/ │ │ │ │ ├── empty.md │ │ │ │ └── index.ts │ │ │ ├── gh2644.ts │ │ │ ├── gh2683.ts │ │ │ ├── gh2693.ts │ │ │ ├── gh2698.ts │ │ │ ├── gh2700.ts │ │ │ ├── gh2704.ts │ │ │ ├── gh2718.ts │ │ │ ├── gh2719.ts │ │ │ ├── gh2721.ts │ │ │ ├── gh2725.ts │ │ │ ├── gh2755.ts │ │ │ ├── gh2774/ │ │ │ │ ├── gh2774.ts │ │ │ │ ├── globalAugment.ts │ │ │ │ └── moduleAugment.ts │ │ │ ├── gh2778.ts │ │ │ ├── gh2779.ts │ │ │ ├── gh2792.ts │ │ │ ├── gh2800.ts │ │ │ ├── gh2802.ts │ │ │ ├── gh2811.ts │ │ │ ├── gh2817.ts │ │ │ ├── gh2820.ts │ │ │ ├── gh2823.ts │ │ │ ├── gh2842.ts │ │ │ ├── gh2844.ts │ │ │ ├── gh2856.ts │ │ │ ├── gh2876.ts │ │ │ ├── gh2881.ts │ │ │ ├── gh2909.js │ │ │ ├── gh2914.ts │ │ │ ├── gh2916.js │ │ │ ├── gh2917.ts │ │ │ ├── gh2920.ts │ │ │ ├── gh2929.js │ │ │ ├── gh2932.ts │ │ │ ├── gh2937/ │ │ │ │ ├── index.ts │ │ │ │ └── not-excluded.ts │ │ │ ├── gh2949.js │ │ │ ├── gh2954.ts │ │ │ ├── gh2962.ts │ │ │ ├── gh2964.d.ts │ │ │ ├── gh2970.ts │ │ │ ├── gh2978.ts │ │ │ ├── gh2994.d.ts │ │ │ ├── gh2999.ts │ │ │ ├── gh3003/ │ │ │ │ ├── enums.ts │ │ │ │ └── index.ts │ │ │ ├── gh3006/ │ │ │ │ ├── index.ts │ │ │ │ └── two words.md │ │ │ ├── gh3009.ts │ │ │ ├── gh3012.ts │ │ │ ├── gh3017.ts │ │ │ ├── gh3019.ts │ │ │ ├── gh3020.ts │ │ │ ├── gh3024.ts │ │ │ ├── gh3026.js │ │ │ ├── gh3031.js │ │ │ ├── gh3050.js │ │ │ ├── gh3064.ts │ │ │ ├── gh3070.ts │ │ │ ├── gh3071.ts │ │ │ ├── gh567.ts │ │ │ ├── gh671.js │ │ │ ├── gh869.ts │ │ │ └── gh941.ts │ │ ├── package.json │ │ ├── renderer/ │ │ │ ├── doc.md │ │ │ ├── expandType.ts │ │ │ ├── gh2982.ts │ │ │ ├── gh2995.ts │ │ │ ├── gh3007.ts │ │ │ ├── gh3014.ts │ │ │ ├── gh3052.ts │ │ │ ├── index.ts │ │ │ └── renderer-readme.md │ │ ├── tsconfig.json │ │ ├── typedoc.json │ │ └── validation/ │ │ ├── callbackParameters.ts │ │ ├── class.ts │ │ ├── externalType.ts │ │ ├── function.ts │ │ ├── getSignature.ts │ │ ├── implemented.ts │ │ ├── indexSignature.ts │ │ ├── intentionallyNotDocumented.ts │ │ ├── interface.ts │ │ ├── namespace.ts │ │ ├── object.ts │ │ ├── parameter.ts │ │ ├── return.ts │ │ ├── setSignature.ts │ │ ├── typeParameter.ts │ │ ├── unusedMergeModuleWith.ts │ │ └── variable.ts │ ├── declarationReference.test.ts │ ├── internationalization.test.ts │ ├── issues.c2.test.ts │ ├── merge.test.ts │ ├── models/ │ │ ├── comment.test.ts │ │ ├── kind.test.ts │ │ ├── reflections.test.ts │ │ └── types.test.ts │ ├── module/ │ │ ├── a.ts │ │ └── b.ts │ ├── output/ │ │ ├── Slugger.test.ts │ │ ├── formatter.test.ts │ │ ├── lib.test.tsx │ │ ├── output.test.ts │ │ └── router.test.ts │ ├── packages.test.ts │ ├── plugins/ │ │ ├── absolute.ts │ │ └── relative.ts │ ├── programs.ts │ ├── project.test.ts │ ├── renderer/ │ │ ├── DefaultTheme.test.ts │ │ ├── specs/ │ │ │ ├── classes/ │ │ │ │ ├── BaseClass.json │ │ │ │ ├── GH3007.DOMBase.json │ │ │ │ ├── GH3007.DOMClass.json │ │ │ │ ├── GH3014.json │ │ │ │ ├── GH3052.CustomPromise.json │ │ │ │ ├── GH3052.PromiseReference.json │ │ │ │ ├── GenericClass.json │ │ │ │ ├── ModifiersClass.json │ │ │ │ └── RenderClass.json │ │ │ ├── documents/ │ │ │ │ └── doc.json │ │ │ ├── enums/ │ │ │ │ └── Enumeration.json │ │ │ ├── functions/ │ │ │ │ └── box.json │ │ │ ├── hierarchy.json │ │ │ ├── index.json │ │ │ ├── interfaces/ │ │ │ │ ├── BaseInterface.json │ │ │ │ ├── DisabledGroups.json │ │ │ │ ├── ExpandType.ExpandedByDefault.json │ │ │ │ ├── GH2982.TMXDataNode.json │ │ │ │ ├── GH3007.DOMIterable.json │ │ │ │ ├── NoneCategory.json │ │ │ │ ├── NoneGroup.json │ │ │ │ └── gh2995.json │ │ │ ├── modules/ │ │ │ │ ├── ExpandType.NestedBehavior1.json │ │ │ │ ├── ExpandType.json │ │ │ │ ├── GH2982.json │ │ │ │ ├── GH3007.json │ │ │ │ └── GH3052.json │ │ │ ├── modules.json │ │ │ └── types/ │ │ │ ├── ExpandType.AExpanded.json │ │ │ ├── ExpandType.BExpanded.json │ │ │ ├── ExpandType.Expandable.json │ │ │ ├── ExpandType.Expandable2.json │ │ │ ├── ExpandType.NestedBehavior1.AExpanded.json │ │ │ ├── ExpandType.NestedBehavior1.AllExpanded.json │ │ │ ├── GH2982.TMXNode.json │ │ │ ├── Nested.json │ │ │ └── UnionComments.json │ │ └── testRendererUtils.ts │ ├── slow/ │ │ ├── README.md │ │ ├── entry-point.test.ts │ │ └── internationalization-usage.test.ts │ ├── utils/ │ │ ├── fs.test.ts │ │ ├── general.test.ts │ │ ├── html.test.ts │ │ ├── languageAliases.test.ts │ │ ├── minimalSourceFile.test.ts │ │ ├── options/ │ │ │ ├── declaration.test.ts │ │ │ ├── default-options.test.ts │ │ │ ├── help.test.ts │ │ │ ├── options.test.ts │ │ │ ├── readers/ │ │ │ │ ├── arguments.test.ts │ │ │ │ ├── package-json.test.ts │ │ │ │ ├── tsconfig.test.ts │ │ │ │ └── typedoc.test.ts │ │ │ └── tsdoc-defaults.test.ts │ │ ├── paths.test.ts │ │ ├── plugins.test.ts │ │ └── sort.test.ts │ ├── utils-common/ │ │ ├── array.test.ts │ │ ├── enum.test.ts │ │ ├── events.test.ts │ │ ├── hooks.test.ts │ │ ├── jsx.test.tsx │ │ ├── map.test.ts │ │ ├── path.test.ts │ │ └── validation.test.ts │ ├── utils.ts │ └── validation.test.ts ├── static/ │ └── style.css ├── tsconfig.json └── tsdoc.json