如何为带有接口的数组声明类型?

时间:2019-11-08 16:12:36

标签: typescript types interface

this.bestMatch = listOfFoundedMatches[userWithTheHighestRank];

this.bestMatch的返回值为:

enter image description here

现在我正在使用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个?

由于在接口之前有0rankdata,所以我不知道如何声明类型。你们会怎么做?

0 个答案:

没有答案