/** * views personal */ type NewInfo = { title: string; date: string; link: string; }; type Recommend = { title: string; msg: string; icon: string; bg: string; iconColor: string; }; declare type PersonalState = { newsInfoList: NewInfo[]; recommendList: Recommend[]; personalForm: { name: string; email: string; autograph: string; occupation: string; phone: string; sex: string; }; };