valor-software/ng2-bootstrap

View on GitHub
scripts/docs/api-doc-test-cases/class-with-doc.ts

Summary

Maintainability
A
0 mins
Test Coverage
//a class with doc to extract

/**
 * This is a documented foo
 */
class DocumentedFoo {
  /**
   * the bar
   */
  bar: string;

  /**
   * A getter
   */
  get componentInstance(): any {
  }

  /**
   * some method
   */
  someMethod(): void {}
}