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

10 lines
250 B
TypeScript

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