gpt4 book ai didi

typescript - 从可空类型中提取不可空类型定义

转载 作者:行者123 更新时间:2023-12-01 21:22:27 24 4
gpt4 key购买 nike

假设我有以下由外部工具生成的界面:

interface Animals {
turtle: { shellHardness: number };
fox: { whatDidItSay: string } | null;
}

我想定义(摘自Animals)乌龟和狐狸的类型,但没有…|狐狸为 null。这对乌龟来说很容易,因为没有空值:

type Turtle = Animals["turtle"];

但是我该如何为狐狸做呢?我想象可能有一些 ExtractNullable 类型可以消除可空性:

type Fox = ExtractNullable<Animals, "fox">;

不幸的是,我无法正确定义 ExtractNullable 类型。我尝试了以下方法:

type ExtractNullable<T, K extends keyof T> = T[K] extends null ? never : T[K];

……但是没有用。 TypeScript Playground 仍然给我 Fox 类型定义为 type Fox = { whatTheySaid: string; } | null 而不是 type Fox = { whatTheySaid: string; }

这可能吗?我哪里错了?

谢谢

最佳答案

NonNullable<Type>

type Fox = NonNullable<Animals["fox"]>;

实现:

/**
* Exclude null and undefined from T
*/
type NonNullable<T> = T extends null | undefined ? never : T;

关于typescript - 从可空类型中提取不可空类型定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63671713/

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