UNPKG

@spotify/web-api-ts-sdk

Version:
10 lines (7 loc) 253 B
import type { User } from '../types.js'; import EndpointsBase from './EndpointsBase.js'; export default class UsersEndpoints extends EndpointsBase { public profile(userId: string) { return this.getRequest<User>(`users/${userId}`); } }