TypeScript/tests/baselines/reference/asyncArrowFunction1_es6.types

9 lines
242 B
Plaintext
Raw Normal View History

2015-05-07 02:33:58 +02:00
=== tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction1_es6.ts ===
var foo = async (): Promise<void> => {
>foo : () => Promise<void>
>async (): Promise<void> => {} : () => Promise<void>
>Promise : Promise<T>
};