Return type specified

This commit is contained in:
Igor Kriklivets
2014-12-11 15:27:27 +03:00
parent 70e2b65a70
commit 446b8bb074
+1 -1
View File
@@ -333,7 +333,7 @@ declare module DevExpress {
createQuery(): Query;
}
interface Promise {
then(doneFn?: Function, failFn?: Function, progressFn?: Function);
then(doneFn?: Function, failFn?: Function, progressFn?: Function) => Promise;
}
export interface CustomStoreOptions extends StoreOptions {
/** The user implementation of the byKey(key, extraOptions) method. */