diff --git a/typings/index.d.ts b/typings/index.d.ts index ac06f21d..26dc9e8a 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1004,6 +1004,12 @@ declare module "noblox.js" { IsPremium: boolean } + interface AuthenticatedUserData { + id: number; + name: string; + displayName: string; + } + interface UserLoginApiData { userId: number; } diff --git a/typings/jsDocs.ts b/typings/jsDocs.ts index c7d203e4..5660344a 100644 --- a/typings/jsDocs.ts +++ b/typings/jsDocs.ts @@ -1380,6 +1380,15 @@ type LoggedInUserData = { IsPremium: boolean } +/** + * @typedef +*/ +type AuthenticatedUserData = { + id: number; + name: string; + displayName: string; +} + /** * @typedef */