Files
DefinitelyTyped/winjs
NCC1701M 90b7f1c1c7 Fix compile errors
Change line 9779 from 
```ts
class QueryCollection<T> implements Array<T> {
```
to
```ts
class QueryCollection<T> extends Array<T> {
```
***Because I getting the error TS2420: Class 'QueryCollection<T>' incorrectly implements interface 'T[]'.***
***    Property 'find' is missing in type 'QueryCollection<T>'.***

After implementing find in .d.ts getting next error about method findIndex and so on.

Simplest way to fix it, was let QueryCollection  extends Array and not implement it.

***Typescript version***
1.8.7
2016-03-22 13:55:45 +01:00
..
2016-03-22 13:55:45 +01:00