You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've started to mix in typescript to my angular 1 library and I'm having trouble getting ngdoc files written in typescript to show up in my documentation.
/** * @ngdoc service * @module ox.components.modals * @name oxModalsService * @description * Service used to instantiate/open various types of modals. This is the main entry point for creating a modal, and it provides several convenience methods for configuring basic, preset modals. */exportdefaultclassOxModalsService{/** * @ngdoc method * @name oxModalsService#open * * @description * Instantiates and opens modal, with optional configuration, then returns the modal instance for later use. * */open(config: IOxModalConfig): OxModal{}}}
When I run this with dgeni with typescript processor configured like:
I've started to mix in typescript to my angular 1 library and I'm having trouble getting ngdoc files written in typescript to show up in my documentation.
When I run this with dgeni with typescript processor configured like:
I get the following:
The description of oxModalsService shows up but the individual methods do not.
I'm using the following in my packages:
Any ideas?
I noticed that in the aliases for the doc it says "default" as the first alias.
The text was updated successfully, but these errors were encountered: