TypeScript/tests/baselines/reference/interfaceWithCommaSeparators.types

11 lines
238 B
Text

=== tests/cases/compiler/interfaceWithCommaSeparators.ts ===
var v: { bar(): void, baz }
>v : { bar(): void; baz: any; }
>bar : () => void
>baz : any
interface Foo { bar(): void, baz }
>Foo : Foo
>bar : () => void
>baz : any