UNPKG

@vscubing/cubing

Version:

A collection of JavaScript cubing libraries.

17 lines (14 loc) 825 B
import { s as PuzzleID } from './PuzzleLoader-BuGfeaom.js'; interface EventInfo { puzzleID: PuzzleID; eventName: string; } type WcaEventID = "333" | "222" | "444" | "555" | "666" | "777" | "333bf" | "333fm" | "333oh" | "clock" | "minx" | "pyram" | "skewb" | "sq1" | "444bf" | "555bf" | "333mbf"; declare const wcaEvents: Record<WcaEventID, EventInfo>; /** @category Event Info */ declare function wcaEventInfo(event: WcaEventID): EventInfo | null; type EventID = WcaEventID | "333ft" | "fto" | "master_tetraminx" | "kilominx" | "redi_cube" | "baby_fto" | "loopover"; declare const twizzleEvents: Record<EventID, EventInfo>; /** @category Event Info */ declare function eventInfo(event: EventID): EventInfo | null; export { type EventID as E, wcaEvents as a, eventInfo as e, twizzleEvents as t, wcaEventInfo as w };