mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-17 23:42:51 +00:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import { persistentWritable } from "$lib/storage";
|
|
|
|
interface ChordStats {
|
|
level: number;
|
|
lastUprank: number;
|
|
}
|
|
|
|
export const chordStats = persistentWritable<Record<string, ChordStats>>(
|
|
"chord-stats",
|
|
{},
|
|
);
|