go-view/src/store/modules/langStore/langStore.d.ts
2022-01-15 16:07:46 +08:00

6 lines
116 B
TypeScript

import { LangEnum } from '@/enums/styleEnum'
export interface LangStateType {
// 当前语言
lang: LangEnum,
}