Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/discordeno_patched/tests/deps.ts>assertInstanceOf

Discord API library for Node and Deno
Latest
function assertInstanceOf
import { assertInstanceOf } from "https://deno.land/x/discordeno_patched@18.0.3/tests/deps.ts";

Make an assertion that obj is an instance of type. If not then throw.

Type Parameters

T extends AnyConstructor

Parameters

actual: unknown
expectedType: T
optional
msg = [UNSUPPORTED]

Returns

asserts actual is GetConstructorType<T>