Skip to content

assertType

  • 类型: <T>(value: T): void

你可以使用此函数作为 expectTypeOf 的替代方法,以轻松地断言参数类型等于提供的泛型。

WARNING

在运行时,此函数不执行任何操作。要 enable typechecking,不要忘记传递 --typecheck 标志。

ts
import { assertType } from 'vitest'

function concat(a: string, b: string): string
function concat(a: number, b: number): number
function concat(a: string | number, b: string | number): string | number

assertType<string>(concat('a', 'b'))
assertType<number>(concat(1, 2))
// @ts-expect-error wrong types
assertType(concat('a', 2))

Released under the MIT License.