=== tests/cases/conformance/es6/yieldExpressions/generatorOverloads2.ts ===
declare module M {
>M : typeof M
function* f(s: string): Iterable<any>;
>f : { (s: string): Iterable<any>; (s: number): Iterable<any>; (s: any): Iterable<any>; }
>s : string
function* f(s: number): Iterable<any>;
>f : { (s: string): Iterable<any>; (s: number): Iterable<any>; (s: any): Iterable<any>; }
>s : number
function* f(s: any): Iterable<any>;
>f : { (s: string): Iterable<any>; (s: number): Iterable<any>; (s: any): Iterable<any>; }
>s : any
}
|