File

src/app/core/settings/settings.model.ts

Properties

elementsAnimations
elementsAnimations: boolean
Type : boolean
language
language: string
Type : string
pageAnimations
pageAnimations: boolean
Type : boolean
theme
theme: string
Type : string
import { AppState } from '../core.module';

export type Language = 'en' | 'es' ;

export interface SettingsState {
  language: string;
  theme: string;
  pageAnimations: boolean;
  elementsAnimations: boolean;
}

export interface State extends AppState {
  settings: SettingsState;
}

results matching ""

    No results matching ""