diff --git a/src/puter-js/types/modules/auth.d.ts b/src/puter-js/types/modules/auth.d.ts index 6a7b47b9c..11317e07d 100644 --- a/src/puter-js/types/modules/auth.d.ts +++ b/src/puter-js/types/modules/auth.d.ts @@ -1,3 +1,5 @@ +import { RequestCallbacks } from "../shared"; + export interface User { uuid: string; username: string; @@ -55,7 +57,7 @@ export class Auth { signIn (options?: { attempt_temp_user_creation?: boolean }): Promise; signOut (): void; isSignedIn (): boolean; - getUser (): Promise; + getUser (options:? RequestCallbacks): Promise; whoami (): Promise; getMonthlyUsage (): Promise; getDetailedAppUsage (appId: string): Promise;