Source: test.js

/**
 * @namespace test
 */

export default {
  /**
   * Say hello
   * @memberof test
   * @return {string}
   */
  hello: function hello() {
    return '';
  }
}