TypeScript/tests/cases/compiler/contextualSigInstantiationRestParams.ts

4 lines
154 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
declare function toInstantiate<A, B>(a?: A, b?: B): B;
declare function contextual(...s: string[]): string
var sig: typeof contextual = toInstantiate;