UNPKG

cs-doppler-phase

Version:

Get the phase of a Counter-Strike Doppler skin

13 lines (12 loc) 462 B
export declare const dopplerPhases: { readonly phase1: "Phase 1"; readonly phase2: "Phase 2"; readonly phase3: "Phase 3"; readonly phase4: "Phase 4"; readonly ruby: "Ruby"; readonly sapphire: "Sapphire"; readonly blackPearl: "Black Pearl"; readonly emerald: "Emerald"; }; export type DopplerPhase = (typeof dopplerPhases)[keyof typeof dopplerPhases]; export declare function getDopplerPhase(iconUrl: string): DopplerPhase | null;