0.1.0 • Published 8 months ago

typedoc-plugin-only-documented v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

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;
};
0.1.0

8 months ago