EmmaRamirez/Clickopolis

View on GitHub
src/models/Settings.ts

Summary

Maintainability
A
0 mins
Test Coverage
type Theme = 'dark' | 'light';

export interface Settings {
  notifications: {
    achievements: boolean;
    events: boolean;
    wonders: boolean;
  }

  pinMenu: boolean;
  theme: Theme;
}