const typedoc = require('typedoc'); const app = new typedoc.Application(); /** * @module dragonfly-components * Exports all dragonfly-components, which can be accessed * either via { * as dragonfly } or { item } notation. */ export { HTMLComponent } from './HTMLComponent'; /** * Hello "Name" * * @param {string} name person/thing * @returns {stirng} Hello + name */ function hello(name:string) { return `Hello ${name}`; }