Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/actionify/tests/deps.ts>assertNotInstanceOf

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
function assertNotInstanceOf
import { assertNotInstanceOf } from "https://deno.land/x/actionify@0.3.0/tests/deps.ts";

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

Parameters

actual: A
unexpectedType: new (...args: any[]) => T
optional
msg = [UNSUPPORTED]

Returns

asserts actual is Exclude<A, T>