this.bestMatch = listOfFoundedMatches[userWithTheHighestRank];
this.bestMatch
的返回值为:
现在我正在使用private bestMatch;
,但是我想定义一个类型声明。我可以使用接口代替any
。我已经尝试过:
export interface Imatch {
email: string;
first_name: string;
last_name: string;
gender: string;
phone: number;
}
export interface Irank {
absolute: string;
relative: number;
}
我真的需要2个接口,还是只有1个?
由于在接口之前有0
或rank
和data
,所以我不知道如何声明类型。你们会怎么做?