Rosé Pine for JSDoc

Rosé Pine for JSDoc

source

Tree.js

/**
  * noun
  * 1. a woody perennial plant, typically having a single stem or trunk growing to a considerable height
  * and bearing lateral branches at some distance from the ground
  * @class
*/

export class Tree {
  constructor() {
  }

  /**
   * 
   * @method
   * @example
   * // returns '🌲'
   * tree.grow();
   */

  grow = () => '🌲';
}