sleeper-api-tsclient
Version:
Typescript client for the sleeper api
27 lines (26 loc) • 656 B
TypeScript
import { PickMetadata } from './PickMetadata';
export declare class Pick {
'playerId': string;
'pickedBy': string;
'rosterId': string;
'round': number;
'draftSlot': number;
'pickNo': number;
'metadata': PickMetadata;
'isKeeper': boolean;
'draftId': string;
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();
}