10 lines
250 B
TypeScript
Raw Normal View History

2021-08-11 18:33:02 +02:00
import { IRootState } from '@/store/modules/root/interfaces'
2021-08-15 12:30:39 +02:00
import { IApplication } from '@/store/modules/root/interfaces'
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>{},
2021-08-11 18:33:02 +02:00
}