beatsaber-overlay/types.d.ts
Isaiah Billingsley 63361cf5d1 Complete rewrite from scratch
- Plain JS
- BS+ only
- Simple song info only
- No configuration
2026-02-19 08:47:37 +00:00

21 lines
385 B
TypeScript

interface Document {
getElementById(elementId: string): HTMLElement;
}
interface MapInfoChanged {
"level_id": string;
"name": string;
"sub_name": string;
"artist": string;
"mapper": string;
"characteristic": string;
"difficulty": string;
"duration": number;
"BPM": number;
"PP": number;
"BSRKey": string;
"coverRaw": string;
"time": number;
"timeMultiplier": number;
}