我有一个InfoType
,传递是一个对象,要求传递的参数必须是InfoType
里的字段,可以如下
type WorkType = number[]|string[];
type InfoType = {
name: string;
age: number;
todo: string[];
work: WorkType;
};
const setInfo: ({[key in keyof InfoType]: number}) = data => {}
如果要传递的字段值也必须和InfoType
下字段类型一致,请问怎么做呢
Partial<InfoType>