TypeScript/tests/baselines/reference/asyncMultiFile_es5.types

9 lines
184 B
Plaintext

=== tests/cases/conformance/async/es5/a.ts ===
async function f() {}
>f : () => Promise<void>
=== tests/cases/conformance/async/es5/b.ts ===
function g() { }
>g : () => void