UNPKG

@wca/helpers

Version:

Helpers and class definitions for WCA and WCIF

11 lines (10 loc) 289 B
import { Attempt } from './attempt'; import { AttemptResult } from './attemptResult'; import { RegistrantId } from './person'; export interface Result { personId: RegistrantId; ranking: number | null; attempts: Attempt[]; best: AttemptResult; average: AttemptResult; }