Skip to content

Commit bceb2d9

Browse files
Add doc comments for getDeltaLink() method
1 parent 2b92c85 commit bceb2d9

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

lib/src/tasks/PageIterator.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ export declare class PageIterator {
7070
* @return A promise that resolves to a response data with next page collection
7171
*/
7272
private fetchAndUpdateNextPageData;
73+
/**
74+
* Getter to get the deltaLink in the current response
75+
* @return A deltaLink which is being used to make delta requests in future
76+
*/
7377
getDeltaLink(): string | undefined;
7478
/**
7579
* @async

lib/src/tasks/PageIterator.js

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/tasks/PageIterator.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tasks/PageIterator.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ export class PageIterator {
112112
}
113113
}
114114

115+
/**
116+
* Getter to get the deltaLink in the current response
117+
* @return A deltaLink which is being used to make delta requests in future
118+
*/
115119
getDeltaLink(): string | undefined {
116120
return this.deltaLink;
117121
}

0 commit comments

Comments
 (0)