typedoc-plugin-only-documented
v0.1.0
Published
plugin for typedoc that only includes @documented annotated comments
Downloads
104
Readme
typedoc-plugin-only-documented
A plugin for TypeDoc that enables an opt-in approach for generating documentation by adding a @documented
modifier and only including symbols that have this modifier.
Installation
npm i -D typedoc-plugin-only-documented
Example
/**
* This function has been @documented and will be in the output.
* @documented
*/
export function foo(): number {
return 123;
}
/**
* This type has not been @documented and will not be in the output
*/
export type PrivateType = {
value: number;
};