Another set of fixes for definition

This commit is contained in:
Sławomir Rosiek
2016-01-20 17:31:56 +01:00
parent 84a5a8bb62
commit 888fd83599
+1 -1
View File
@@ -10,7 +10,7 @@ declare module Oidc {
class DefaultPromise {
constructor(promise: any);
then(successCallback: (value?: any) => void, errorCallback: (reason?) => void): DefaultPromise;
then(successCallback: (value?: any) => void, errorCallback: (reason?: any) => void): DefaultPromise;
catch(errorCallback: () => void): DefaultPromise;
}