gpt4 book ai didi

typescript - 如何在 Typescript 中使用接口(interface)的一部分作为新接口(interface)?

转载 作者:行者123 更新时间:2023-12-04 10:44:38 33 4
gpt4 key购买 nike

是否可以将接口(interface)的一部分用作 Typescript 中的新接口(interface)?
例如我有下面的界面:

interface Mobile{
canCall: boolean;
haveScreen: boolean;
isItIOS: boolean;
brand: string;
}

现在我只想使用一些移动接口(interface)数据,例如我只需要:
interface phone{
canCall: boolean;
brand: string;
}

如何在手机界面使用手机界面数据?

最佳答案

您可以使用Pick用于此

Constructs a type by picking the set of properties K from T


interface Mobile {
canCall: boolean;
haveScreen: boolean;
isItIOS: boolean;
brand: string;
}

type Phone = Pick<Mobile, 'canCall' | 'brand'>;

Playground

关于typescript - 如何在 Typescript 中使用接口(interface)的一部分作为新接口(interface)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59769046/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com