From b0373bd376d59826a2bbca7f38e496fd7fb937c1 Mon Sep 17 00:00:00 2001 From: Andreas Borgh Date: Tue, 13 Feb 2024 20:27:36 +0100 Subject: [PATCH] More corrections --- types/OAuth2App.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/OAuth2App.d.ts b/types/OAuth2App.d.ts index 31a751f..8d3f664 100644 --- a/types/OAuth2App.d.ts +++ b/types/OAuth2App.d.ts @@ -82,7 +82,7 @@ declare class OAuth2App { configId: string; }): string; hasOAuth2Client({ sessionId, configId, }?: { - sessionId: any; + sessionId: string; configId?: string; }): boolean; /** @@ -170,6 +170,6 @@ declare class OAuth2App { getOAuth2Devices({ sessionId, configId, }: { sessionId: string; configId: string; - }): Promise; + }): Promise; } import OAuth2Client = require("./OAuth2Client");