summaryrefslogtreecommitdiff
path: root/tools/ts_library_builder/testdata/moduleA.ts
blob: a5bd07e2fcb435fbad29988f116a5833c8614f46 (plain)
1
2
3
4
5
6
7
8
9
/** jsdoc for foo */
export function foo(a: string, b: string) {
  console.log(a, b);
}

// no jsdoc for bar
export async function bar(promise: Promise<void>): Promise<void> {
  return promise.then(() => {});
}