File

projects/web-mev/src/app/core/settings/settings.model.ts

Index

Properties

Properties

autoNightMode
autoNightMode: boolean
Type : boolean
elementsAnimations
elementsAnimations: boolean
Type : boolean
hour
hour: number
Type : number
language
language: string
Type : string
nightTheme
nightTheme: string
Type : string
pageAnimations
pageAnimations: boolean
Type : boolean
pageAnimationsDisabled
pageAnimationsDisabled: boolean
Type : boolean
stickyHeader
stickyHeader: boolean
Type : boolean
theme
theme: string
Type : string
import { AppState } from '../core.module';

export const NIGHT_MODE_THEME = 'BLACK-THEME';

export type Language = 'en' | 'sk' | 'de' | 'fr' | 'es' | 'pt-br' | 'he';

export interface SettingsState {
  language: string;
  theme: string;
  autoNightMode: boolean;
  nightTheme: string;
  stickyHeader: boolean;
  pageAnimations: boolean;
  pageAnimationsDisabled: boolean;
  elementsAnimations: boolean;
  hour: number;
}

export interface State extends AppState {
  settings: SettingsState;
}

result-matching ""

    No results matching ""