TypeScript/tests/baselines/reference/interfaceOnly.types

12 lines
184 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/interfaceOnly.ts ===
interface foo {
>foo : foo
foo();
>foo : () => any
f2 (f: ()=> void);
>f2 : (f: () => void) => any
>f : () => void
}