I have a function signature such as this:
import { HubInfoUrlProvider, Logger } from '@ibm-wch-sdk/api';
import { FetchText, WriteText } from './../utils/http.utils';
import { Store } from 'redux';
export function contentEditorStore(
fetchText: FetchText,
aWriteJson: WriteText,
apiBase: HubInfoUrlProvider,
logger: Logger = NOOP_LOGGER
): Store<ContentEditorState>
It would be nice if the types in use could be represented by a link to the doc in the documentation of this function. At the moment the documentation just shows the type, but no link.
- two types are part of the same project, they could easily be linked
- two types are part of a different npm module, but that one contains an 'xxx.api.json' file. So it could be cross linked.
- 'Store' comes from another npm repo, which afaik is not using api-documenter. It would still be nice to have a link to that npm repo in the docs.
I have a function signature such as this:
It would be nice if the types in use could be represented by a link to the doc in the documentation of this function. At the moment the documentation just shows the type, but no link.