Changed reject to be 'any' per angular docs

This commit is contained in:
Josh Carroll
2013-03-21 12:01:28 -04:00
parent 91b97bfa9c
commit c983f12458

View File

@@ -391,7 +391,7 @@ module ng {
interface IDeferred {
resolve(value?: any): void;
reject(reason?: string): void;
reject(reason?: any): void;
promise: IPromise;
}