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
..
winjs-1.0.d.ts Merge branch 'master' into rename-repo-url 2016-03-17 21:06:54 +09:00
winjs-2.0.d.ts Merge branch 'master' into rename-repo-url 2016-03-17 21:06:54 +09:00
winjs-2.1.d.ts Merge branch 'master' into rename-repo-url 2016-03-17 21:06:54 +09:00
winjs.d.ts Fix compile errors 2016-03-22 13:55:45 +01:00
winjs.d.ts.tscparams pass npm run all in new definition-tester 2016-02-10 00:16:03 +09:00