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:
Jeffery Grajkowski
2013-11-25 10:48:01 -08:00
parent 6321375a3f
commit 798dbfbf8f
26 changed files with 85 additions and 85 deletions

View File

@@ -142,7 +142,7 @@ declare module 'zmq' {
* @param msg The message
* @param flags Message flags
*/
send(msg: Array, flags?: number): Socket;
send(msg: any[], flags?: number): Socket;
/**
* Close the socket.