UNPKG

@wca/helpers

Version:

Helpers and class definitions for WCA and WCIF

11 lines (10 loc) 279 B
import { EventId } from './eventId'; export interface Registration { wcaRegistrationId: number; eventIds: EventId[]; status: 'accepted' | 'pending' | 'deleted'; guests?: number; comments?: string; administrativeNotes?: string; isCompeting: boolean; }