TypeScript/tests/baselines/reference/augmentArray.types

8 lines
111 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/augmentArray.ts ===
interface Array<T> {
>Array : T[]
>T : T
2014-08-15 23:33:16 +02:00
(): any[];
}