gpt4 book ai didi

特定字符串文字以外的任何字符串的 TypeScript 类型

转载 作者:行者123 更新时间:2023-12-04 01:06:14 24 4
gpt4 key购买 nike

是否可以为特定字符串文字以外的任何字符串创建类型?type FooString = 'foo' | stringtype Foo = 'foo'type NotFoo = ?目标:const a: NotFoo = 'foo'; // errorconst b: NotFoo = 'bar'; // ok

最佳答案

条件类型会做一个伎俩:

type FooString = 'foo' | string

type Foo = 'foo'
type NotFoo<T extends string> = T extends 'foo' ? never : T

const notFoo = <T extends string>(arg: NotFoo<T>):T => arg

const result = notFoo('hello') // ok
const result2 = notFoo('foo') // error

type Result = NotFoo<'foo'> // never
type Result2 = NotFoo<'bar'> // 'bar'
Playground link
argfoo , NotFoo util 将返回 never类型。 never type 不是你可以作为参数提供的东西。

关于特定字符串文字以外的任何字符串的 TypeScript 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66354585/

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