Type Alias Expect<T>

Expect<T>: T

断言类型T为真。当断言为真时,编辑器不会提示错误,否则会有红色下划线提示类型错误。

Type Parameters

  • T extends true

    需要断言为真的类型。

interface Person {
name: string,
age: number
}

type Case = [
Expect<Equal<keyof Person, 'name' | 'age'>>,
...更多的类型断言
]