Replies: 1 comment
-
|
You are running on some old version of TypeDoc which doesn't support
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone! I'm having trouble getting TypeDoc's
@interfacetag to work properly. I'm trying to convert a type alias into an interface, but it's not expanding the properties as expected.What I'm trying to do:
Expected behavior:
TypeDoc should convert the
typeof Optionstype into an interface with explicitoptionAandoptionBproperties, making the documentation more readable.What's happening:
The
@interfacetag is being ignored, and TypeDoc still shows the type astypeof Optionsinstead of expanding it into interface properties.My TypeDoc config:
{ "$schema": "https://typedoc.org/schema.json", "entryPoints": ["src/index.ts"], "out": "docs-typedoc", "excludePrivate": true, "excludeProtected": true, "excludeExternals": true, "theme": "default", "name": "API Extractor Example - TypeDoc", "includeVersion": true, "categorizeByGroup": true, "categoryOrder": ["Classes", "Interfaces", "Functions", "Types", "*"], "defaultCategory": "Other", "includeHierarchySummary": false, "disableSources": true, "customCss": "./custom-typedoc.css", "excludeInternal": true }Beta Was this translation helpful? Give feedback.
All reactions