From 878851c2ee0bc1bc7b208e8bb92635e3b84035ec Mon Sep 17 00:00:00 2001 From: Vladyslav Horbachov <50652041+LeftTwixWand@users.noreply.github.com> Date: Tue, 31 Jan 2023 15:19:24 +0100 Subject: [PATCH] Changed continuation token type --- src/Core/CoreClient.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/CoreClient.ts b/src/Core/CoreClient.ts index a63f78a7..b6068c56 100644 --- a/src/Core/CoreClient.ts +++ b/src/Core/CoreClient.ts @@ -354,14 +354,14 @@ export class CoreRestClient extends RestClientBase { * @param stateFilter - Filter on team projects in a specific team project state (default: WellFormed). * @param top - * @param skip - - * @param continuationToken - + * @param continuationToken - Pointer that shows how many projects already been fetched. * @param getDefaultTeamImageUrl - */ public async getProjects( stateFilter?: any, top?: number, skip?: number, - continuationToken?: string, + continuationToken?: number, getDefaultTeamImageUrl?: boolean ): Promise {