Massive/settings.ts
Brandon Presley 3ec685a76e Give up on hidden drawer navigation.
Auto focusing is all messed up here and I
don't think all this trouble is worth it.
2022-09-29 13:32:59 +13:00

15 lines
285 B
TypeScript

export default interface Settings {
alarm: number;
vibrate: number;
predict: number;
sound?: string;
notify?: number;
images?: number;
showUnit?: number;
color?: string;
workouts: number;
steps: number;
nextAlarm?: string;
focus?: 'name' | 'reps' | 'weight';
}