TypeScript/tests/baselines/reference/asyncMultiFile.types
2015-11-30 13:12:41 -08:00

8 lines
184 B
Text

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