2021-11-03 18:26:49 +01:00

11 lines
259 B
TypeScript

import { IRootState } from '@/store/modules/root/interfaces'
import { IApplication } from '@/types/application'
export const state: IRootState = {
root: true,
language: 'en',
errorMessages: null,
application: <IApplication>{},
appLoading: false,
}