[FEATURE] need to support enum type
See original GitHub issueOverview of the issue
take a look at the following picture,
PopupEffect
is an enum type:
export enum PopupEffect {
fadeIn, fadeOut, bubbleIn, bubbleOut
}
the source is here
compodoc do not create a link to it
Suggest a Fix
it it great to create a link to enum type
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Enum Types - Java™ Tutorials
An enum type is a special data type that enables for a variable to be a set of predefined constants. The variable must...
Read more >Handbook - Enums - TypeScript
String enums allow you to give a meaningful and readable value when your code runs, independent of the name of the enum member...
Read more >Enum Support - Code First - EF6 - Microsoft Learn
This video and step-by-step walkthrough shows how to use enum types with Entity Framework Code First. It also demonstrates how to use enums...
Read more >Documentation: 15: 8.7. Enumerated Types - PostgreSQL
Enumerated (enum) types are data types that comprise a static, ordered set of values. They are equivalent to the enum types supported in...
Read more >Enumeration declaration - cppreference.com
The values of the constants are values of an integral type known as the underlying type of the enumeration. An enumeration has the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@eitanfr I have fixed this feature yesterday :
@kajnelissen thx. Is it possible to configure compodoc to create a separate page for enums? (or should I open another issue) For example, I want to have the ability to search the enum docs by the enum name…