From 57d9155a48b989d2ed7d89bb0ac033a3a5eff9e3 Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Sun, 22 Sep 2024 11:27:07 -0700 Subject: [PATCH] fix: type of "scope" in AuthenticateOptions is now string --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 6bc4169..d2a705c 100644 --- a/index.d.ts +++ b/index.d.ts @@ -168,7 +168,7 @@ declare namespace OAuth2Server { /** * The scope(s) to authenticate. */ - scope?: string[] | undefined; + scope?: string | undefined; /** * Set the X-Accepted-OAuth-Scopes HTTP header on response objects.