typedoc-plugin-file-tags

1.0.1 • Public • Published

typedoc-plugin-file-tags

A plugin for Typedoc to allow setting category tags at the file level.

npm

Installation

npm install typedoc-plugin-file-tags --save-dev

Usage

Include @category tags at the file level.

/**
 * These tags will be applied to all the exports of this file.
 * @module
 * @category Math
 */

export function add(a, b) {
  return a + b;
}

/** Subtracts `b` from `a` */
export function subtract(a, b) {
  return a - b;
}

Package Sidebar

Install

npm i typedoc-plugin-file-tags

Weekly Downloads

81

Version

1.0.1

License

MIT

Unpacked Size

5.11 kB

Total Files

4

Last publish

Collaborators

  • brandones