Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/request-client.js/src/api/request-network.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -341,7 +341,7 @@ export default class RequestNetwork {
* @returns the Requests
*/
public async fromTopic(
topic: any,
topic: IdentityTypes.IIdentity | string,
updatedBetween?: Types.ITimestampBoundaries,
options?: {
disablePaymentDetection?: boolean;
Expand DownExpand Up@@ -413,7 +413,7 @@ export default class RequestNetwork {
* @returns the Requests
*/
public async fromMultipleTopics(
topics: any[],
topics: Array<IdentityTypes.IIdentity | string>,
updatedBetween?: Types.ITimestampBoundaries,
options?: {
disablePaymentDetection?: boolean;
Expand Down
Loading