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

x/earthstar/src/test/asserts.ts>assertInstanceOf

Storage for private, distributed, offline-first applications.
Go to Latest
function assertInstanceOf
import { assertInstanceOf } from "https://deno.land/x/earthstar@v10.0.1/src/test/asserts.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>