UNPKG

@sociate/sociate-api-sdk

Version:

Javascript client for Sociate AI APIs

12 lines (11 loc) 356 B
import { HttpClient } from '../lib/core/http'; import { UserMeModel } from '../types/users'; export declare class UsersAPI { private httpClient; constructor(httpClient: HttpClient); /** * Retrieves the current user's information. * @returns A promise that resolves to the user's information. */ me(): Promise<UserMeModel>; }