UNPKG

cody-music

Version:

mac osx spotify and itunes music player controller, spotify audio features, itunes and spotify genre, and playlist control

21 lines (20 loc) 531 B
import { SpotifyAuthState } from "./models"; export declare class SpotifyUser { birthdate: string; country: string; display_name: string; email: string; uri: string; id: string; followers: any; product: string; status: number; } export declare class UserProfile { private static instance; private constructor(); static getInstance(): UserProfile; accessExpired(): Promise<boolean>; getUserProfile(): Promise<SpotifyUser>; spotifyAuthState(): Promise<SpotifyAuthState>; }