如何通过界面将函数的参数设置为键

时间:2019-11-05 18:53:56

标签: reactjs typescript

我有接口和代表此接口的对象:

MyInterface {
  variableOne: string;
  variableTwo: boolean;
  variableThree: boolean; 
  ...
}

我也有函数 toggleFunction(x),其中有一个键并在我的对象中切换它。 我需要在切换功能的参数 x 中设置哪种类型,以将其用于切换对象中的所有布尔键?

例如,我需要类似的东西: toggleFunction(x: TYPE?)

2 个答案:

答案 0 :(得分:2)

您可以使用我通常称为KeysMatching的条件映射类型:

type KeysMatching<T, V> = { [K in keyof T]: T[K] extends V ? K : never }[keyof T];

然后可以像这样定义toggleFunction()

declare const o: MyInterface; // or wherever it comes from
function toggleFunction(x: KeysMatching<MyInterface, boolean>) {
    o[x] = !o[x];
}

toggleFunction("variableTwo"); // okay
toggleFunction("variableThree"); // okay
toggleFunction("variableOne"); // error!

希望有所帮助;祝你好运!

Link to code

答案 1 :(得分:1)

使用keyof

function toggleFunction(x: keyof MyInterface): void {
    // ...
}