Skip to content

Commit

Permalink
Fix aliased name also
Browse files Browse the repository at this point in the history
  • Loading branch information
southpolesteve committed Nov 19, 2019
1 parent d84da92 commit 383f9d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/cosmosdb/cosmos/src/client/Item/Items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class Items {
*/
public readChangeFeed(
partitionKey: string | number | boolean,
changeFeedOptions: ChangeFeedOptions
changeFeedOptions?: ChangeFeedOptions
): ChangeFeedIterator<any>;
/**
* Create a `ChangeFeedIterator` to iterate over pages of changes
Expand All @@ -133,7 +133,7 @@ export class Items {
*/
public readChangeFeed<T>(
partitionKey: string | number | boolean,
changeFeedOptions: ChangeFeedOptions
changeFeedOptions?: ChangeFeedOptions
): ChangeFeedIterator<T>;
/**
* Create a `ChangeFeedIterator` to iterate over pages of changes
Expand Down

0 comments on commit 383f9d5

Please sign in to comment.