Skip to content

Commit

Permalink
Merge pull request #82 from gunjandatta/gdatta
Browse files Browse the repository at this point in the history
Updated the Intellise for the New Base Files
  • Loading branch information
gunjandatta committed Dec 2, 2017
2 parents 197fc16 + c82d02d commit fdd4114
Show file tree
Hide file tree
Showing 20 changed files with 252 additions and 113 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
*.log
.vscode
js
node_modules
2 changes: 1 addition & 1 deletion build/gd-sprest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/lib/jslink.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion build/utils/base.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ export interface IBase<Type = any, Result = Type, QueryResult = Result> {
* @param reject - Method to execute for unsuccessful requests.
*/
then(resolve?: (value?: Result) => void, reject?: (value?: Result) => void): PromiseLike<Result>;
/**
* Method to wait for the parent requests to complete
* @param callback - The callback method.
* @param requestIdx - The request index.
*/
waitForRequestsToComplete(callback: () => void, requestIdx?: number): any;
}
/**
* Base Collection
Expand All @@ -79,7 +85,7 @@ export interface IBaseCollection<Type = any, Result = Type, QueryResult = Result
}
/*********************************************************************************************************************************/
/*********************************************************************************************************************************/
export declare class Base<Type = any, Result = Type, QueryResult = Result> {
export declare class Base<Type = any, Result = Type, QueryResult = Result> implements IBase {
/**
* Constructor
* @param targetInfo - The target information.
Expand Down
2 changes: 1 addition & 1 deletion build/utils/base.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fdd4114

Please sign in to comment.