summaryrefslogtreecommitdiff
path: root/tools/ts_library_builder/testdata/moduleB.ts
blob: 91f5ea875722fdb74dc70ec07a08e1307e54812f (plain)
1
2
3
4
5
6
7
8
9
/** jsdoc about Foo */
export class Foo {
  private _foo = "foo";
  /** jsdoc about Foo.log() */
  log() {
    console.log(this._foo);
    return this._foo;
  }
}