From febcceb042fd560e919cd4cdcac2b0407a3a8c00 Mon Sep 17 00:00:00 2001 From: Reynaldi Chernando <12949382+reynaldichernando@users.noreply.github.com> Date: Wed, 11 Feb 2026 01:00:53 +0700 Subject: [PATCH] Fix auth type typo (#2454) --- src/puter-js/types/modules/auth.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/puter-js/types/modules/auth.d.ts b/src/puter-js/types/modules/auth.d.ts index 11317e07d..7e0f10ab1 100644 --- a/src/puter-js/types/modules/auth.d.ts +++ b/src/puter-js/types/modules/auth.d.ts @@ -57,7 +57,7 @@ export class Auth { signIn (options?: { attempt_temp_user_creation?: boolean }): Promise; signOut (): void; isSignedIn (): boolean; - getUser (options:? RequestCallbacks): Promise; + getUser (options?: RequestCallbacks): Promise; whoami (): Promise; getMonthlyUsage (): Promise; getDetailedAppUsage (appId: string): Promise;