UNPKG

sleeper-api-tsclient

Version:

Typescript client for the sleeper api

24 lines (23 loc) 619 B
import { UserInLeagueMetadata } from './UserInLeagueMetadata'; export declare class UserInLeague { 'userId': string; 'username': string; 'displayName': string; 'avatar': string; 'metadata': UserInLeagueMetadata; 'isOwner': boolean; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }