11 lines
259 B
TypeScript
Raw Normal View History

2021-08-21 18:36:44 +02:00
import { IRootState } from '@/store/modules/root/interfaces'
import { IApplication } from '@/types/application'
2021-08-11 18:33:02 +02:00
export const state: IRootState = {
root: true,
language: 'en',
errorMessages: null,
2021-08-15 12:30:39 +02:00
application: <IApplication>{},
appLoading: false,
2021-08-11 18:33:02 +02:00
}