@wca/helpers
Version:
Helpers and class definitions for WCA and WCIF
12 lines (11 loc) • 322 B
TypeScript
import { EventId } from './eventId';
import { AttemptResult } from './attemptResult';
import { RankingType } from './rankingType';
export interface PersonalBest {
eventId: EventId;
best: AttemptResult;
worldRanking: number;
continentalRanking: number;
nationalRanking: number;
type: RankingType;
}