src/app/core/settings/settings.model.ts
elementsAnimations |
elementsAnimations: |
Type : boolean
|
language |
language: |
Type : string
|
pageAnimations |
pageAnimations: |
Type : boolean
|
theme |
theme: |
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;
}