Skip to main content
Module

x/mtkruto/0_deps.ts>assertInstanceOf

[WIP] Cross-runtime JavaScript library for building Telegram clients
Go to Latest
function assertInstanceOf
import { assertInstanceOf } from "https://deno.land/x/mtkruto@0.1.105/0_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>