mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
Converting ungeneric "Array" to "any[]"
TypeScript 0.9.5 beta does not allow generic type references without the type argument. This code will still compile for 0.9.1 users. Flight and Ember have further compile problems in 0.9.5 that I don't feel qualified to address as I'm not versed in those libraries.
This commit is contained in:
Vendored
+1
-1
@@ -81,7 +81,7 @@ declare module createjs {
|
||||
getResult(value: string, rawResult?: boolean): Object;
|
||||
removeAll(): void;
|
||||
remove(idsOrUrls: string): void;
|
||||
remove(idsOrUrls: Array): void;
|
||||
remove(idsOrUrls: any[]): void;
|
||||
reset(): void;
|
||||
setMaxConnections(value: number): void;
|
||||
setUseXHR(value: boolean): void;
|
||||
|
||||
Reference in New Issue
Block a user