TypeScript/tests/baselines/reference/thisTag2.types

10 lines
192 B
Plaintext

=== tests/cases/conformance/jsdoc/a.js ===
/** @this {string} */
export function f1() {}
>f1 : (this: string) => void
/** @this */
export function f2() {}
>f2 : (this: any) => void