TypeScript/tests/baselines/reference/interfaceOnly.types
2014-08-15 14:37:48 -07:00

12 lines
184 B
Plaintext

=== tests/cases/compiler/interfaceOnly.ts ===
interface foo {
>foo : foo
foo();
>foo : () => any
f2 (f: ()=> void);
>f2 : (f: () => void) => any
>f : () => void
}