ng-implementation/eqlair/src/app/redux/initialState.ts

24 lines
321 B
TypeScript
Raw Normal View History

2025-10-14 10:27:55 +02:00
const initialState = {
user: {
isAuthenticated: false,
id: '',
login: '',
token: ''
},
app: {
demoMode: false,
loading: false,
backendAPIRoot: '',
searchInput: '',
filters: {
},
fromText : '',
toText : '',
botMessage : '',
},
};
export default initialState;