TypeScript/tests/cases/compiler/contextualSigInstantiationRestParams.ts
2014-07-12 17:30:19 -07:00

4 lines
154 B
TypeScript

declare function toInstantiate<A, B>(a?: A, b?: B): B;
declare function contextual(...s: string[]): string
var sig: typeof contextual = toInstantiate;